]> pd.if.org Git - nbds/blob - makefile
f2d16912de4d0c2e87f415ba1d26159256536dd8
[nbds] / makefile
1 ###################################################################################################
2 # Written by Josh Dybnis and released to the public domain, as explained at
3 # http://creativecommons.org/licenses/publicdomain
4 #
5 ###################################################################################################
6 # Makefile for building programs with whole-program interfile optimization
7 ###################################################################################################
8 OPT        := -fwhole-program -combine -03# -DNDEBUG
9 CFLAGS := -g -Wall -Werror -std=c99 -m64 -fnested-functions $(OPT)# -DENABLE_TRACE
10 INCS   := $(addprefix -I, include)
11 TESTS  := output/ll_test output/sl_test output/ht_test output/rcu_test
12 EXES   := $(TESTS)
13
14 RUNTIME_SRCS  := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c
15 TEST_SRCS     := $(RUNTIME_SRCS)
16 rcu_test_SRCS := $(TEST_SRCS) test/rcu_test.c
17 txn_test_SRCS := $(TEST_SRCS) struct/hashtable.c txn/txn.c
18 ll_test_SRCS  := $(TEST_SRCS) struct/list.c test/ll_test.c struct/nstring.c
19 sl_test_SRCS  := $(TEST_SRCS) struct/skiplist.c test/sl_test.c struct/nstring.c
20 ht_test_SRCS  := $(TEST_SRCS) struct/hashtable.c test/ht_test.c test/CuTest.c struct/nstring.c
21
22 tests: $(TESTS)
23
24 ###################################################################################################
25 # Run the tests
26 ###################################################################################################
27 test: $(addsuffix .log, $(TESTS))
28         @echo > /dev/null
29
30 $(addsuffix .log, $(TESTS)) : %.log : %
31         @echo "Running $*" && $* | tee $*.log
32
33 ###################################################################################################
34 # Rebuild an executable if any of it's source files need to be recompiled
35 #
36 # Note: Calculating dependancies as a side-effect of compilation is disabled. There is a bug in
37 #               gcc. Compilation fails when -MM -MF is used and there is more than one source file.
38 #               -MM -MT $@.d -MF $@.d
39 ###################################################################################################
40 $(EXES): output/% : output/%.d makefile
41         gcc $(CFLAGS) $(INCS) -o $@ $($*_SRCS)
42
43 ###################################################################################################
44 # Build tags file for vi
45 ###################################################################################################
46 tags:
47         ctags -R .
48
49 ###################################################################################################
50 #
51 ###################################################################################################
52 clean:
53         rm -rfv output/*
54
55 .PHONY: clean test tags
56
57 ###################################################################################################
58 # Generate the dependencies lists for each executable
59 #
60 # Note: -combine is removed from CFLAGS because of a bug in gcc. The compiler chokes when
61 #               -MM is used with -combine.
62 ###################################################################################################
63 $(addsuffix .d, $(EXES)) : output/%.d :
64         gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > $@
65
66 -include $(addsuffix .d, $(EXES))