File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ PANDOC_OPT_DOCX= --toc-depth=2 --table-of-contents \
2929 -t docx \
3030 --reference-doc="$(BASE ) /assets/style-reference.docx"
3131
32- all : user-guide troubleshooting-guide
32+ all : user-guide troubleshooting-guide distribute-in-house
3333
34- all-pdf : user-guide-pdf troubleshooting-guide-pdf
34+ all-pdf : user-guide-pdf troubleshooting-guide-pdf distribute-in-house-pdf
3535
36- all-docx : user-guide-docx troubleshooting-guide-docx
36+ all-docx : user-guide-docx troubleshooting-guide-docx distribute-in-house-docx
3737
3838user-guide : user-guide-pdf user-guide-docx
3939
@@ -55,5 +55,15 @@ troubleshooting-guide-docx:
5555 test -d " $( OUTDIR) " || mkdir " $( OUTDIR) "
5656 cat troubleshooting-guide.md | pandoc ${PANDOC_OPT_DOCX} -o " $( OUTDIR) /troubleshooting-guide-$( DATE) .docx"
5757
58+ distribute-in-house : distribute-in-house-pdf distribute-in-house-docx
59+
60+ distribute-in-house-pdf :
61+ test -d " $( OUTDIR) " || mkdir " $( OUTDIR) "
62+ cat distribute-in-house.md | pandoc ${PANDOC_OPT_PDF} -o " $( OUTDIR) /distribute-in-house-$( DATE) .pdf"
63+
64+ distribute-in-house-docx :
65+ test -d " $( OUTDIR) " || mkdir " $( OUTDIR) "
66+ cat distribute-in-house.md | pandoc ${PANDOC_OPT_DOCX} -o " $( OUTDIR) /distribute-in-house-$( DATE) .docx"
67+
5868clean :
5969 rm -rf $(OUTDIR )
You can’t perform that action at this time.
0 commit comments