new functions: quit and help
[calc.git] / makefile
CommitLineData
ec15bdbc
LM
1# Default flags
2
3CC = gcc
4
5INCLUDES = -I../debug -D__MEMORY_ALLOCATION__
6OFLAGS = -O4 -Os
7#OFLAGS = -O4 -ffast-math -finline-functions
8#OFLAGS = -O4 -finline-functions
9#OFLAGS += -mtune=pentium3 -mmmx -msse -msse2 -m3dnow
10#OFLAGS += -minline-all-stringops -fsingle-precision-constant
11#OFLAGS += -malign-double
12CFLAGS += -W -Wall -Wextra -g
13CFLAGS += -std=c99 -D_XOPEN_SOURCE=500
b449884c 14CFLAGS += $(OFLAGS) $(INCLUDES) $(GCOVER)
ec15bdbc
LM
15LDFLAGS += -g
16
17# Targets
18
19ALLEXE =
20ALLEXE += calc
efdfb543 21#ALLEXE += skel
ec15bdbc
LM
22
23SHELL = bash
24
0b489a77 25#MAKE = mingw32-make
ec15bdbc
LM
26MAKEFLAGS += -s
27
28# Functions
29
30TITLE = echo -en "\033[0;1m$(strip $(1))\033[0;0m:\t"
31PASS = echo -e "\033[1;32m$(strip $(1))\033[0;0m"
32WARN = echo -e "\033[1;33m$(strip $(1))\033[0;0m"
33FAIL = echo -e "\033[1;31m$(strip $(1))\033[0;0m"
34
35MKDIR = mkdir -p $(1) && chmod a+rx,go-w $(1)
36
37INSTALL = test -d `dirname $(2)` || $(call MKDIR, `dirname $(2)`) && cp -pa $(1) $(2) && chmod a+rX,go-w $(2)
38
39VALID = $(call TITLE, $(1)) && $(2) && $(call PASS, SUCCESS) || { $(call FAIL, FAILED); test; }
40
41## Generic rules
42
43all: depends
44 $(MAKE) $(ALLEXE:%=%.exe)
45
ec15bdbc
LM
46count:
47 wc $(wildcard *.c *.h) $(MAKEFILE_LIST)
48
49clean:
50 $(call TITLE, "Cleaning")
51 touch clean
52 rm -f clean $(wildcard *.d *.ld *.log *.o *.test *~ .exec_*)
53 $(call PASS, SUCCESS)
54
b449884c
LM
55depends: $(patsubst %.c, %.d, $(wildcard *.c)) $(patsubst %, %.ld, $(ALLEXE))
56
57gcovs:
58 $(MAKE) $(addprefix gcov_,$(ALLEXE))
59
ec15bdbc
LM
60purge: clean
61 $(call TITLE, "Purging")
62 touch purge
b449884c 63 rm -f purge $(ALLEXE:%=%.exe) $(shell [ -f .targets ] && { cat .targets | sort | uniq; echo .targets; })
ec15bdbc
LM
64 $(call PASS, SUCCESS)
65
0c2d2e4e 66tests: all
b449884c 67 $(MAKE) $(addprefix test_,$(ALLEXE))
0c2d2e4e 68
ec15bdbc
LM
69## Main rules
70
71include $(wildcard *.d)
72include $(wildcard *.ld)
73
b449884c
LM
74gcov_%:
75 make purge
76 CFLAGS="-fprofile-arcs -ftest-coverage" LDFLAGS="-fprofile-arcs -ftest-coverage" make
77 make test_$(@:gcov_%=%)
78 gcov `sed -e 's/\.exe:/.c/;s/\.o/.c/g' $(@:gcov_%=%.ld)`
79 touch gcov
80 rm -f gcov $(wildcard *.gcda *.gcno)
81 make purge
82
ec15bdbc
LM
83%.test: %.c
84 $(call TITLE, "Building $@")
85# awk '/\/\* *test:.*\*\// { sub(/^.*\/\* *test: */, ""); sub(/ *\*\/.*$$/, ""); print }' $< > $@
86 ./getcomments.pl -p='test:\s' -f='%' $< > $@
87 $(call PASS, SUCCESS)
88
89test_%: %.test %.exe
90 IFS=$$'\n'; RC=0; \
91 for test in `cat $< | sed 's,${<:.test=.exe},./${<:.test=.exe},g'`; do \
92 echo "=== $$test ==="; \
93 eval $(VALGRIND) $$test; \
94 [ $$? -eq 0 ] && echo -e "\033[1;32mSUCCESS\033[0;0m" \
95 || { echo -e "\033[1;31mFAILED\033[0;0m"; RC=1; }; \
96 done; \
97 test "$$RC" -ne 1
98
99valgrind_%: %
100 VALGRIND="valgrind -v --leak-check=full --show-reachable=yes --log-fd=2"; \
101 export VALGRIND; \
102 $(MAKE) test_$<
103
104%.d: %.c
105 $(call TITLE, "Building $@")
106 $(CC) $(INCLUDES) -MM $< -o $@~
107 echo ${<:.c=.o}: $(shell ./getcomments.pl -p='depend:\s' -f='%' $<) >> $@~
108 mv $@~ $@
109 $(call PASS, SUCCESS)
110
111%.ld: %.c
112 $(call TITLE, "Building $@")
1968fc94 113 echo ${<:.c=.exe}: $(shell ./getcomments.pl -p='linker:\s' -f='%' $< | awk '{for (i=1;i<=NF;i++) if ($$(i) ~ /.o$$/) printf " %s", $$(i)}') > $@
ec15bdbc
LM
114 $(call PASS, SUCCESS)
115
116%.o: %.c
117 $(call TITLE, "Building $@")
118 $(CC) $(CFLAGS) $(INCLUDES) $(shell ./getcomments.pl -p='cflags:\s' -f='%' $<) -c $< -o $@
119 $(call PASS, SUCCESS)
120
121
122%.exe: %.o %.d
123 $(call TITLE, "Building $@")
124 $(CC) $(LDFLAGS) $(shell ./getcomments.pl -p='linker:\s' -f='%' ${<:.o=.c}) $< -o $@
125 $(call PASS, SUCCESS)
126
127## Phony
128
b449884c 129.PHONY: all clean count depends gcovs purge tests
ec15bdbc
LM
130
131## Precious
132
133.PRECIOUS: %.d %.o