]> git.llucax.com Git - software/posixx.git/blob - test/Makefile
Remove circular dependency
[software/posixx.git] / test / Makefile
1
2 CINCPATH = -isystem include
3 CFLAGS += -std=c++98 -Wall -pedantic
4 LDFLAGS = -lboost_unit_test_framework
5
6 TESTPRG = test_suite
7 TESTCMD = ./$(TESTPRG) --detect_memory_leak=1 --report_level=short \
8 #               --build_info=yes --log_level=test_suite \
9 #               | grep -v "Entering test case " | grep -v "Leaving test case"
10
11 VALGRIND = valgrind --tool=memcheck --leak-check=yes --db-attach=no \
12                 --num-callers=24 --leak-resolution=high --track-fds=yes \
13                 --suppressions=valgrind.suppressions
14
15
16 SOURCES = $(shell find -name '*.cpp')
17 OBJS = $(SOURCES:.cpp=.o)
18
19
20
21 ALL_CFLAGS = $(CFLAGS) $(CINCPATH)
22
23 ifdef RELEASE
24 ALL_CFLAGS += -O3 -NDEBUG
25 endif
26
27 ifdef DEBUG
28 ALL_CFLAGS += -g -DDEBUG
29 endif
30
31 ifdef PROFILE
32 ALL_CFLAGS += -g -pg -fprofile-arcs -ftest-coverage
33 endif
34
35
36 ifneq ($(V), 1)
37 NICE_CXX = @echo "  CXX $@"; $(CXX)
38 NICE_LINK = @echo "  LINK $@"; $(CXX)
39 NICE_TEST = @echo "  TEST"; $(TESTCMD) > /dev/null 2>&1
40 NICE_MEMTEST = @echo "  MEMTEST"; $(VALGRIND) --log-file=valgrind.log \
41                 $(TESTCMD) > /dev/null 2>&1
42 NICE_CLEAN = @echo "  CLEAN"; $(RM)
43 else
44 NICE_CXX = $(CXX)
45 NICE_LINK = $(CXX)
46 NICE_TEST = $(TESTCMD)
47 NICE_MEMTEST = $(VALGRIND) $(TESTCMD)
48 NICE_CLEAN = $(RM) -v
49 endif
50
51
52 default: all
53
54 all: test_suite
55
56
57 # dependency handling
58
59 # XXX the mkdir *has* to be inside the rule, otherwise make will build the
60 #     dependencies over and over again, because of this:
61 #     When a file that is included in the Makefile need to be built by itself,
62 #     the Makefile is re-executed after building the files to include. The
63 #     problem is, the directory .deps is updated *after* the files are created
64 #     in it, so when the Makefile re-executes, the files to include are created
65 #     but one of it's dependencies (the .deps directory) is outdated, so the
66 #     the files to include are re-built and the Makefile re-executed again,
67 #     entering in an infinite loop.
68 .deps/%.deps: %.cpp
69         @mkdir -p $(dir $@)
70         @set -e; rm -f $@; \
71                 $(CC) -MM -MG -MP $(CPPFLAGS) $(ALL_CFLAGS) $< -MF $@.$$$$; \
72                 sed 's,\($(notdir $*)\)\.o[ :]*,$(dir $<)\1.o $@ : ,g' < $@.$$$$ > $@; \
73                 rm -f $@.$$$$
74
75 ifneq ($(MAKECMDGOALS),clean)
76 -include $(addprefix .deps/,$(OBJS:.o=.deps))
77 endif
78
79
80 # main build
81
82
83 $(TESTPRG): $(OBJS)
84         $(NICE_LINK) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $^
85
86 $(OBJS): include
87
88 .cpp.o:
89         $(NICE_CXX) $(ALL_CFLAGS) -c $< -o $@
90
91 include:
92         @mkdir -p include
93         @ln -fs ../../src include/posixx
94
95 test: all
96         $(NICE_TEST)
97
98 memtest: all
99         $(NICE_MEMTEST)
100
101 clean:
102         $(NICE_CLEAN) -r $(TESTPRG) include $(OBJS) .deps valgrind.log \
103                 *.bb *.bbg *.da *.gcov *.gcda *.gcno gmon.out
104
105 .PHONY: default all test clean
106
107