Skip to content

Commit 67420a1

Browse files
committed
Build distribute-in-house manual
1 parent 520e85c commit 67420a1

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

doc/Sources/Makefile

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff 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

3838
user-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+
5868
clean:
5969
rm -rf $(OUTDIR)

0 commit comments

Comments
 (0)