diff options
author | tkimia <tkimia@purdue.edu> | 2014-02-10 10:40:36 -0500 |
---|---|---|
committer | tkimia <tkimia@purdue.edu> | 2014-02-10 10:40:36 -0500 |
commit | 0696a3e5d75f901a1d74565b9efa37c39e8d13bc (patch) | |
tree | 64c31255054243d225110d4e07d1863c66e8773c /Makefile | |
parent | f64de0958583d3972390b6f43d8b8eb8e026da65 (diff) | |
parent | 2c9640b00d0de74fce98a5af511b7b08784b24b3 (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Conflicts:
docs/DesignDocument.docx
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 |