From 9c38e418bbd86a630ae995ff9b1f1566c9fd5c92 Mon Sep 17 00:00:00 2001 From: DavisLWebb Date: Mon, 10 Feb 2014 10:06:57 -0500 Subject: Ive changed the design doc by adding the Model 2 application design --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7a239c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup + +pdf: $(addsuffix .pdf,$(docs)) +html: $(addsuffix .html,$(docs)) + +%.pdf: %.md Makefile + pandoc -s $< -o $@ +%.html: %.md Makefile + pandoc -s $< -o $@ +%.png: %.dot Makefile + dot -Tpng < $< > $@ + +ProductBacklog.pdf: SystemModel.png +SystemModel.png: stickman.png + +clean: + rm -f -- *.pdf *.html -- cgit v1.2.3-2-g168b