Makefiles: use appropriate preprocessor vs. compiler flags
[model-checker-benchmarks.git] / barrier / Makefile
1 include ../benchmarks.mk
2
3 TESTNAME = barrier
4
5 all: $(TESTNAME)
6
7 $(TESTNAME): $(TESTNAME).cc $(TESTNAME).h
8         $(CXX) -o $@ $< $(CXXFLAGS) $(LDFLAGS)
9
10 clean:
11         rm -f $(TESTNAME) *.o