]> pd.if.org Git - pdclib/blob - Makefile
Added 'void' to empty parameter lists.
[pdclib] / Makefile
1 # This is a list of all non-source files that are part of the distribution.
2 AUXFILES := Makefile Readme.txt
3
4 PROJDIRS := functions includes internals
5 SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c")
6 HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h")
7 INTFILES := $(patsubst %.c,%.r,$(shell find functions/_PDCLIB -name "*.c"))
8 OBJFILES := $(patsubst %.c,%.o,$(SRCFILES))
9 TSTFILES := $(patsubst %.c,%.t,$(SRCFILES))
10 REGFILES := $(filter-out $(INTFILES),$(patsubst %.c,%.r,$(SRCFILES)))
11 DEPFILES := $(patsubst %.c,%.d,$(SRCFILES))
12 ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES)
13
14 .PHONY: clean dist test regtest
15
16 all: pdclib.a
17
18 pdclib.a: $(OBJFILES)
19         @ar r pdclib.a $?
20
21 test: $(TSTFILES)
22         -@rc=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc"
23
24 regtest: $(REGFILES)
25         -@rc=0; for file in $(REGFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Regression tests failed: $$rc"
26
27 -include $(DEPFILES)
28
29 clean:
30         -@for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(REGFILES) pdclib.a pdclib.tgz; do if [ -f $$file ]; then rm $$file; fi; done
31
32 dist:
33         @tar czf pdclib.tgz $(ALLFILES)
34
35 todolist:
36         -@for file in $(ALLFILES); do grep -H TODO $$file; done; true
37
38 %.o: %.c Makefile
39         @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@
40
41 %.t: %.c Makefile pdclib.a
42         @$(CC) -Wall -DTEST -std=c99 -I./includes -I./internals $< pdclib.a -o $@
43
44 %.r: %.c Makefile
45         @$(CC) -Wall -DTEST -DREGTEST -std=c99 -I./internals $< -o $@