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