]> pd.if.org Git - nbds/blob - makefile
port to Ubuntu 8.10 x86-64 w/ gcc 4.3.2
[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 CFLAGS0 := -g -Wall -Werror -std=c99 -lpthread 
8 CFLAGS1 := $(CFLAGS0) -O3 #-DNDEBUG #-DENABLE_TRACE #-fwhole-program -combine 
9 CFLAGS  := $(CFLAGS1) -DUSE_SYSTEM_MALLOC #-DLIST_USE_HAZARD_POINTER #-DTEST_STRING_KEYS #-DNBD32 
10 INCS    := $(addprefix -I, include)
11 TESTS   := output/rcu_test output/haz_test output/map_test2 output/map_test1 output/txn_test 
12 EXES    := $(TESTS)
13
14 RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c datatype/nstring.c \
15                                 runtime/hazard.c
16 MAP_SRCS     := map/map.c map/list.c map/skiplist.c map/hashtable.c
17
18 haz_test_SRCS  := $(RUNTIME_SRCS) test/haz_test.c
19 rcu_test_SRCS  := $(RUNTIME_SRCS) test/rcu_test.c
20 txn_test_SRCS  := $(RUNTIME_SRCS) $(MAP_SRCS) test/txn_test.c test/CuTest.c txn/txn.c
21 map_test1_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/map_test1.c 
22 map_test2_SRCS := $(RUNTIME_SRCS) $(MAP_SRCS) test/map_test2.c test/CuTest.c
23
24 tests: $(TESTS)
25
26 ###################################################################################################
27 # build and run tests
28 ###################################################################################################
29 test: $(addsuffix .log, $(TESTS))
30         @echo > /dev/null
31
32 $(addsuffix .log, $(TESTS)) : %.log : %
33         @echo "Running $*" && $* | tee $*.log
34
35 ###################################################################################################
36 # Rebuild an executable if any of it's source files need to be recompiled
37 #
38 # Note: Calculating dependencies as a side-effect of compilation is disabled. There is a bug in
39 #               gcc. Compilation fails when -MM -MF is used and there is more than one source file.
40 #               Otherwise "-MM -MT $@.d -MF $@.d" should be part of the command line for the compile.
41 #
42 #       Also, when calculating dependencies -combine is removed from CFLAGS because of another bug 
43 #               in gcc. It chokes when -MM is used with -combine.
44 ###################################################################################################
45 $(EXES): output/% : output/%.d makefile
46         gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > $@.d
47         gcc $(CFLAGS) $(INCS) -o $@ $($*_SRCS)
48
49 asm: $(addsuffix .s, $(EXES))
50
51 $(addsuffix .s, $(EXES)): output/%.s : output/%.d makefile
52         gcc $(CFLAGS:-combine:) $(INCS) -MM -MT $@ $($*_SRCS) > output/$*.d
53         gcc $(CFLAGS) $(INCS) -combine -S -o $@.temp $($*_SRCS)
54         grep -v "^L[BFM]\|^LCF" $@.temp > $@
55         rm $@.temp
56
57 ###################################################################################################
58 # tags file for vi
59 ###################################################################################################
60 tags:
61         ctags -R .
62
63 ###################################################################################################
64 #
65 ###################################################################################################
66 clean:
67         rm -rfv output/*
68
69 ###################################################################################################
70 # dummy rule for boostrapping dependency files
71 ###################################################################################################
72 $(addsuffix .d, $(EXES)) : output/%.d :
73
74 -include $(addsuffix .d, $(EXES))
75
76 .PHONY: clean test tags asm