]> pd.if.org Git - nbds/blob - makefile
pad struct to improve hazard performance, fix off-by-one error
[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 $(OPT) -m64 #-DLIST_USE_HAZARD_POINTER -DENABLE_TRACE #-DTEST_STRING_KEYS #-DNBD32 
9 INCS   := $(addprefix -I, include)
10 TESTS  := output/map_test2 output/map_test1 output/txn_test 
11 EXES   := $(TESTS)
12
13 RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c datatype/nstring.c runtime/hazard.c
14 MAP_SRCS     := map/map.c map/list.c map/skiplist.c map/hashtable.c
15
16 haz_test_SRCS  := $(RUNTIME_SRCS) test/haz_test.c
17 rcu_test_SRCS  := $(RUNTIME_SRCS) test/rcu_test.c
18 txn_test_SRCS  := $(RUNTIME_SRCS) $(MAP_SRCS) test/txn_test.c test/CuTest.c txn/txn.c
19 map_test1_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/map_test1.c 
20 map_test2_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/map_test2.c test/CuTest.c
21
22 tests: $(TESTS)
23
24 ###################################################################################################
25 # build and run 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 dependencies 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 #               Otherwise "-MM -MT $@.d -MF $@.d" should be part of the command line for the compile.
39 #
40 #       Also, when calculating dependencies -combine is removed from CFLAGS because of another bug 
41 #               in gcc. It chokes when -MM is used with -combine.
42 ###################################################################################################
43 $(EXES): output/% : output/%.d makefile
44         gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > $@.d
45         gcc $(CFLAGS) $(INCS) -o $@ $($*_SRCS)
46
47 asm: $(addsuffix .s, $(EXES))
48
49 $(addsuffix .s, $(EXES)): output/%.s : output/%.d makefile
50         gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > output/$*.d
51         gcc $(CFLAGS) $(INCS) -S -o $@.temp $($*_SRCS)
52         grep -v "^L[BFM]\|^LCF" $@.temp > $@
53         rm $@.temp
54
55 ###################################################################################################
56 # tags file for vi
57 ###################################################################################################
58 tags:
59         ctags -R .
60
61 ###################################################################################################
62 #
63 ###################################################################################################
64 clean:
65         rm -rfv output/*
66
67 ###################################################################################################
68 # dummy rule for boostrapping dependency files
69 ###################################################################################################
70 $(addsuffix .d, $(EXES)) : output/%.d :
71
72 -include $(addsuffix .d, $(EXES))
73
74 .PHONY: clean test tags asm