diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-10 10:49:52 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-10 10:49:52 -0500 |
commit | 3747a41fbe290fd5c78c3e849241e3867762bf2c (patch) | |
tree | afea36c380c866f9119fd6ee18ef9d8b7ce44cfa /Makefile | |
parent | 3898be259999389686c134485df38fa6a3318d7b (diff) | |
parent | c54aa13522dae9b0d19af50b7cb218c4f7e2407e (diff) |
Merge branch 'webb' into tkimia
Conflicts:
docs/DesignDocument.docx
docs/DesignDocument.md
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 |