X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=makefile;h=a4700efaa7fa7bf1341ed31ac47c2afa25342704;hp=1e4c1ec19a698680f3b6f0acfb1433d9ea0246ec;hb=052506ff082f134f00834f666653819e18d9bddf;hpb=efd90a1b8a9d3bbb1bdd8e6ae41b3462e7193fb2 diff --git a/makefile b/makefile index 1e4c1ec..a4700ef 100644 --- a/makefile +++ b/makefile @@ -8,13 +8,16 @@ OPT := -fwhole-program -combine -03 #-DNDEBUG CFLAGS := -g -Wall -Werror -std=c99 -m64 -fnested-functions $(OPT) #-DENABLE_TRACE INCS := $(addprefix -I, include) -TESTS := output/rcu_test output/list_test output/ht_test +TESTS := output/rcu_test output/list_test output/skiplist_test output/ht_test output/txn_test EXES := $(TESTS) -RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c runtime/CuTest.c -rcu_test_SRCS := $(RUNTIME_SRCS) -list_test_SRCS := $(RUNTIME_SRCS) struct/list.c -ht_test_SRCS := $(RUNTIME_SRCS) struct/ht.c struct/ht_test.c +RUNTIME_SRCS := runtime/runtime.c runtime/rcu.c runtime/lwt.c runtime/mem.c +TEST_SRCS := $(RUNTIME_SRCS) +rcu_test_SRCS := $(TEST_SRCS) +list_test_SRCS := $(TEST_SRCS) struct/list.c +skiplist_test_SRCS := $(TEST_SRCS) struct/skiplist.c +ht_test_SRCS := $(TEST_SRCS) struct/hashtable.c test/ht_test.c test/CuTest.c +txn_test_SRCS := $(TEST_SRCS) struct/hashtable.c txn/txn.c tests: $(TESTS)