X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=concurrent-hashmap%2FMakefile;h=d39e8315c683ebb8041c9b2353a40e0737be69b2;hb=faf43225ff0d1a0091f5e489714de0c26d24d02f;hp=4db5bca0e536d44f4bb95aeaef3017adbd7060b4;hpb=fce370a6252cdea0ae220afd0c38160018658c5d;p=model-checker-benchmarks.git diff --git a/concurrent-hashmap/Makefile b/concurrent-hashmap/Makefile index 4db5bca..d39e831 100644 --- a/concurrent-hashmap/Makefile +++ b/concurrent-hashmap/Makefile @@ -1,11 +1,17 @@ include ../benchmarks.mk -TESTS := table +TESTS := table table_wildcard1 all: $(TESTS) table: main.cc hashmap.h $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS) +table_wildcard1: main_wildcard1.cc hashmap_wildcard.h + $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS) + +table_wildcard2: main_wildcard1.cc hashmap_wildcard.h + $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS) + clean: rm -f *.o *.d $(TESTS)