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