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