edits
[model-checker-benchmarks.git] / concurrent-hashmap / Makefile
1 include ../benchmarks.mk
2
3 TESTS := table table_wildcard1
4
5 all: $(TESTS)
6
7 table: main.cc hashmap.h
8         $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS)
9
10 table_wildcard1: main_wildcard1.cc hashmap_wildcard.h
11         $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS)
12
13 table_wildcard2: main_wildcard1.cc hashmap_wildcard.h
14         $(CXX) -o $@ $^ $(SPEC_OBJ) $(CXXFLAGS) -std=c++0x $(LDFLAGS)
15
16 clean:
17         rm -f *.o *.d $(TESTS)