X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=ba245f386dbe6696e9ee178f2619d1c12498b681;hb=566bfcc6924abd9fccbd97fa8207711e899dd0bc;hp=ab9e812f34cde897da9b109f3b30c5a5da0c8c50;hpb=e6fd9753e785702792a00236f86f257a22f5c794;p=pdclib diff --git a/Makefile b/Makefile index ab9e812..ba245f3 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") # All header files of the project HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") # All .c files in functions/_PDCLIB that do not have a regression test driver -INTFILES := _Exit atomax digits open print rename remove seed stdinit strtox_main strtox_prelim +INTFILES := _Exit atomax digits open print remove rename seed stdinit strtox_main strtox_prelim # All object files in the library OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) # All test drivers (.t) @@ -113,4 +113,4 @@ help: %.r: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -DTEST -DREGTEST -std=c99 -I./internals $< -o $@ + @$(CC) $(CFLAGS) -Wno-format -DTEST -DREGTEST -std=c99 -I./internals $< -o $@