]> pd.if.org Git - nbds/blob - makefile
add missing header file for txn
[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 ###################################################################################################
6 # Makefile for building programs with whole-program interfile optimization 
7 ###################################################################################################
8 OPT        := -fwhole-program -combine -03 #-DNDEBUG
9 CFLAGS := -g -Wall -Werror -std=c99 -m64 -fnested-functions #$(OPT) #-DENABLE_TRACE 
10 INCS   := $(addprefix -I, include)
11 TESTS  := output/rcu_test output/list_test output/ht_test output/txn_test
12 EXES   := $(TESTS)
13
14 RUNTIME_SRCS   := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c 
15 TEST_SRCS      := $(RUNTIME_SRCS) 
16 rcu_test_SRCS  := $(TEST_SRCS)
17 list_test_SRCS := $(TEST_SRCS) struct/list.c
18 ht_test_SRCS   := $(TEST_SRCS) struct/ht.c test/ht_test.c test/CuTest.c
19 txn_test_SRCS  := $(TEST_SRCS) struct/ht.c txn/txn.c
20
21 tests: $(TESTS) 
22
23 ###################################################################################################
24 # Run the tests
25 ###################################################################################################
26 test: $(addsuffix .log, $(TESTS))
27         @echo > /dev/null
28
29 $(addsuffix .log, $(TESTS)) : %.log : % 
30         @echo "Running $*" && $* | tee $*.log
31
32 ###################################################################################################
33 # Rebuild an executable if any of it's source files need to be recompiled 
34 #
35 # Note: Calculating dependancies as a side-effect of compilation is disabled. There is a bug in 
36 #               gcc. Compilation fails when -MM -MF is used and there is more than one source file.
37 #               -MM -MT $@.d -MF $@.d
38 ###################################################################################################
39 $(EXES): output/% : output/%.d makefile
40         gcc $(CFLAGS) $(INCS) -DMAKE_$* -o $@ $($*_SRCS)
41
42 ###################################################################################################
43 # Build tags file for vi
44 ###################################################################################################
45 tags:
46         ctags -R .
47
48 ###################################################################################################
49
50 ###################################################################################################
51 clean:
52         rm -rfv output/*
53
54 .PHONY: clean test tags
55
56 ###################################################################################################
57 # Generate the dependencies lists for each executable
58 #
59 # Note: -combine is removed from CFLAGS because of a bug in gcc. The compiler chokes when
60 #               -MM is used with -combine.
61 ###################################################################################################
62 $(addsuffix .d, $(EXES)) : output/%.d :
63         gcc $(CFLAGS:-combine:) $(INCS) -DMAKE_$* -MM -MT $@ $($*_SRCS) > $@
64
65 -include $(addsuffix .d, $(EXES))