X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=williams-queue%2FMakefile;fp=williams-queue%2FMakefile;h=3ef067fb04288a296e03e199c1a3ba026bc8f5ae;hb=adc372d8af13fdc07eba357f0c6de4319dbfce10;hp=0000000000000000000000000000000000000000;hpb=c2ac1e3d5e63916c9f08a2847a9bc178040c82f5;p=model-checker-benchmarks.git diff --git a/williams-queue/Makefile b/williams-queue/Makefile new file mode 100644 index 0000000..3ef067f --- /dev/null +++ b/williams-queue/Makefile @@ -0,0 +1,11 @@ +include ../benchmarks.mk + +TESTNAME = williams-queue + +all: $(TESTNAME) + +$(TESTNAME): $(TESTNAME).cc $(TESTNAME).h + $(CXX) -o $@ $< $(CPPFLAGS) $(LDFLAGS) + +clean: + rm -f $(TESTNAME) *.o