]> pd.if.org Git - pdclib/blobdiff - Makefile
Changed handling of regtest exclusions.
[pdclib] / Makefile
index 24cfbaeafd8181a519c04c1939dbaaa07ccbea3d..e58d72aa4e4ae2de67abdf9845f3c0bef9d7c632 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,10 @@ AUXFILES := Makefile Readme.txt
 PROJDIRS := functions includes internals
 SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c")
 HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h")
-INTFILES := $(patsubst %.c,%.r,$(shell find functions/_PDCLIB -name "*.c"))
+INTFILES := atomax digits seed strtox_main strtox_prelim
 OBJFILES := $(patsubst %.c,%.o,$(SRCFILES))
 TSTFILES := $(patsubst %.c,%.t,$(SRCFILES))
-REGFILES := $(filter-out $(INTFILES),$(patsubst %.c,%.r,$(SRCFILES)))
+REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES)))
 DEPFILES := $(patsubst %.c,%.d,$(SRCFILES))
 ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES)
 
@@ -32,6 +32,9 @@ clean:
 dist:
        @tar czf pdclib.tgz $(ALLFILES)
 
+todolist:
+       -@for file in $(ALLFILES); do grep -H TODO $$file; done; true
+
 %.o: %.c Makefile
        @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@