From 4b2b3a7e2b94f54f113eeb22827b9cb3088c5e34 Mon Sep 17 00:00:00 2001 From: fanasina Date: Thu, 22 Jan 2026 13:56:17 +0100 Subject: [PATCH] [fix] makefile: add listdir include --- dimension_t/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dimension_t/Makefile b/dimension_t/Makefile index 64efd73..2c8ead7 100644 --- a/dimension_t/Makefile +++ b/dimension_t/Makefile @@ -27,20 +27,22 @@ PERMSRC_O=$(PERMDIR)/src/permutation_t/permutation_t.o #SRC=$(wildcard **/**/*.c) #OBJ=$(SRC:.c=.o) #$(TOOLSRC_O) +OBJ=$(DIMSRC_O) $(PERMSRC_O) + TOPTARGETS := all clean -DEP=$(PERMDIR) +DEP=$(PERMDIR) $(LISTDIR) $(TOPTARGETS): $(DEP) all: $(DIMSRC_O) -$(DIMSRC_O) : $(DIMSRC) $(PERMSRC_O) - $(CC) -o $@ -c $< $(CFLAGS) - $(DEP): $(MAKE) -C $@ $(MAKECMDGOALS) +$(DIMSRC_O) : $(DIMSRC) $(PERMSRC_O) + $(CC) -o $@ -c $< $(CFLAGS) + #$(TOOLSRC_O): $(TOOLSRC) # $(CC) -o $@ -c $< $(CFLAGS)