projects
/
model-checker-benchmarks.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add top-level Makefile
[model-checker-benchmarks.git]
/
barrier
/
Makefile
1
include ../benchmarks.mk
2
3
BIN = barrier
4
5
all: barrier
6
7
barrier: barrier.cc barrier.h
8
$(CXX) -o $@ $< $(CPPFLAGS) $(LDFLAGS)
9
10
clean:
11
rm -f $(BIN) *.o