diff options
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile index 7a239c4..4f236d4 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,10 +1,10 @@ -docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup +docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup DesignDocument pdf: $(addsuffix .pdf,$(docs)) html: $(addsuffix .html,$(docs)) %.pdf: %.md Makefile - pandoc -s $< -o $@ + pandoc $($@.args) -s $< -o $@ %.html: %.md Makefile pandoc -s $< -o $@ %.png: %.dot Makefile @@ -13,5 +13,8 @@ html: $(addsuffix .html,$(docs)) ProductBacklog.pdf: SystemModel.png SystemModel.png: stickman.png +DesignDocument.pdf: DesignDocument.png +DesignDocument.pdf.args = --table-of-contents --number-sections -f markdown+definition_lists + clean: rm -f -- *.pdf *.html |