X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=24e30137db320ab72079173e7c070ad6d0364244;hb=ee68216262558493cc862deb575fb0b97ed49429;hp=7cc747437d8ae1b7594ce3828c0268cb126f6a78;hpb=c97120968d26f69517f2da7db2278a1ba30e27a6;p=pdclib diff --git a/Makefile b/Makefile index 7cc7474..24e3013 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ 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 := atomax digits seed strtox_main strtox_prelim rename remove _Exit +INTFILES := atomax digits lengthmods seed strtox_main strtox_prelim rename remove _Exit OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES))) @@ -43,6 +43,9 @@ dist: todolist: -@for file in $(ALLFILES); do grep -H TODO $$file; done; true +fixmelist: + -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true + %.o: %.c Makefile @$(CC) $(CFLAGS) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@