X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=301ac24e1aa968101db18b8f0aa61aca11c62396;hb=1e509dc98aaddd8f4b020b2fca3124a5fe251788;hp=f1cf050c62ff1d00617bffa926eee7a253e9a552;hpb=44db4763a69211be0afa0b336adbb16a0b10f2cb;p=pdclib diff --git a/Makefile b/Makefile index f1cf050..301ac24 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # $Id$ # This is where you chose which platform to compile for (see 'make links' / './platform') -PLATFORM := example_cygwin +PLATFORM := example # This is a list of all non-source files that are part of the distribution. AUXFILES := Makefile Readme.txt @@ -9,9 +9,9 @@ AUXFILES := Makefile Readme.txt # Directories belonging to the project PROJDIRS := functions includes internals # All source files of the project -SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") +SRCFILES := $(shell find -L $(PROJDIRS) -type f -name "*.c") # All header files of the project -HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") +HDRFILES := $(shell find -L $(PROJDIRS) -type f -name "*.h") # All .c files in functions/_PDCLIB that do not have a regression test driver INTFILES := _Exit atomax digits open print scan remove rename seed stdinit strtox_main strtox_prelim filemode eol errno seek prepread prepwrite allocpages tmpfilename closeall # All object files in the library @@ -29,8 +29,8 @@ REGDEPFILES := $(patsubst %,%.d,$(REGFILES)) # All files belonging to the source distribution ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -fno-builtin -CFLAGS := -g -std=c99 -I./internals -I./testing $(WARNINGS) $(USERFLAGS) +WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -Wuninitialized -Wstrict-prototypes +CFLAGS := -fno-builtin -g -std=c99 -I./internals -I./testing $(WARNINGS) $(USERFLAGS) .PHONY: all clean srcdist bindist test tests testdrivers regtests regtestdrivers todos fixmes find links unlink help @@ -54,7 +54,6 @@ pdclib.a: $(OBJFILES) @echo test: functions/$(FILE) - echo $(TSTDEPFILES) functions/$(FILE) tests: testdrivers @@ -69,30 +68,32 @@ regtests: regtestdrivers regtestdrivers: $(REGFILES) @echo -#-include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) +-include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) clean: - @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(TSTDEPFILES) $(REGFILES) $(REGDEPFILES) pdclib.a pdclib.tgz scanf_testdata_*; do if [ -f $$file ]; then rm $$file; fi; done + -@$(RM) $(wildcard $(OBJFILES) $(DEPFILES) $(TSTFILES) $(TSTDEPFILES) $(REGFILES) $(REGDEPFILES) pdclib.a pdclib.tgz scanf_testdata_*) srcdist: @tar czf pdclib.tgz $(ALLFILES) todos: - -@for file in $(ALLFILES); do grep -H TODO $$file; done; true + -@for file in $(ALLFILES:Makefile=); do grep -H TODO $$file; done; true fixmes: - -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true + -@for file in $(ALLFILES:Makefile=); do grep -H FIXME $$file; done; true find: @find functions/ includes/ internals/ platform/ -name "*\.[ch]" -type f | xargs grep $$FIND links: @echo "Linking platform/$(PLATFORM)..." + @if [ ! -d functions/signal ]; then mkdir functions/signal; fi @for file in $$(find platform/$(PLATFORM) -mindepth 2 -type f ! -path *.svn* -printf "%P\n"); do ln -s $$(dirname $$file | sed "s@[^/]*@..@g")/platform/$(PLATFORM)/$$file $$file; done unlink: @echo "Unlinking platform files..." @for dir in $(PROJDIRS); do find $$dir -type l -exec rm {} +; done + @rmdir functions/signal help: @echo "Available make targets:" @@ -128,5 +129,4 @@ help: %_r: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -MMD -MP -DTEST -DREGTEST $< -o $@ - + @$(CC) $(CFLAGS) -Wno-deprecated-declarations -Wno-format -MMD -MP -DTEST -DREGTEST $< -o $@