forked from petterreinholdtsen/noark5-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (53 loc) · 1.86 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/make -f
IMG_PUML := $(wildcard kapitler/media/*.puml)
IMG_PNG := $(IMG_PUML:.puml=.png)
PANDOC_TYPE = rst
all: spesifikasjon.pdf spesifikasjon.html
pdf: spesifikasjon.pdf
images: $(IMG_PNG)
.puml.png:
plantuml -p < $^ > [email protected] && mv [email protected] $@
.puml.svg:
plantuml -svg -p < $^ > [email protected] && mv [email protected] $@
# Draft Docbook based PDF building. Remove colwidth to let the
# docbook processors calculate columns widths. Can pandoc be told to
# not set colwidth?
docbook: kapitler/*.rst
[ -h docbook/media ] || ln -s ../kapitler/media docbook
for m in kapitler/*.rst; do \
echo "Converting $$m to docbook" ; \
pandoc \
--top-level-division=chapter -f $(PANDOC_TYPE) \
-t docbook4 $$m \
-o docbook/$$(basename $$m .rst).xml; \
done
sed -i -e 's%<chapter%<preface%' -e 's%</chapter%</preface%' docbook/*-forord*.xml
sed -i -e 's%<chapter%<appendix%' -e 's%</chapter%</appendix%' docbook/*-vedlegg*.xml
DBLATEX_OPTS = \
-T simple \
-p docbook/pdf.xsl
spesifikasjon: spesifikasjon.pdf
spesifikasjon.pdf: docbook images
#xmlto --with-fop pdf docbook/spesifikasjon.xml
#xmlto --with-dblatex pdf docbook/spesifikasjon.xml
dblatex $(DBLATEX_OPTS) -o spesifikasjon.pdf docbook/spesifikasjon.xml
html: spesifikasjon.html
spesifikasjon.html: docbook images
xmlto html-nochunks docbook/spesifikasjon.xml
epub: spesifikasjon.epub
spesifikasjon.epub: docbook images
dbtoepub docbook/spesifikasjon.xml
# Rules useful for checking out the docx based documents
.docx.pdf:
cd $(shell dirname $@); libreoffice --headless --invisible --convert-to pdf $(abspath $^)
.rst.pdf:
pandoc -f $(PANDOC_TYPE) -t latex $^ -o $@
.PHONY: docbook
.SUFFIXES: .rst .pdf .docx .puml .png .svg .epub
clean:
$(RM) $(IMG_PNG) docbook/[012]*.xml
docx-to-rst:
cd arkiv; for f in *.docx; do \
echo Converting "$$f"; \
pandoc --columns=200 --wrap=preserve "$$f" -o "$${f%.docx}.rst"; \
done