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