X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=ee08b5c420656ad567e4354889f1143aa3a8e9f7;hb=fbacb5f41ada96e7b539ccc41deccb1a7e1a1ba8;hp=1cc4f4baa9cb1054f34b5ba2497bb32c175aa87f;hpb=65a79092518f7818c93238caa9ebfdab3f36cda8;p=model-checker.git diff --git a/Makefile b/Makefile index 1cc4f4b..ee08b5c 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,9 @@ malloc.o: malloc.c %.o: %.cc $(CXX) -MMD -MF .$@.d -fPIC -c $< $(CPPFLAGS) +%.pdf: %.dot + dot -Tpdf $< -o $@ + -include $(OBJECTS:%=.%.d) PHONY += clean @@ -66,4 +69,7 @@ benchmarks: $(LIB_SO) fi $(MAKE) -C $(BENCH_DIR) +PHONY += pdfs +pdfs: $(patsubst %.dot,%.pdf,$(wildcard *.dot)) + .PHONY: $(PHONY)