forked from dpmb/dpmb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (19 loc) · 942 Bytes
/
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
all: html epub pdf
html debianpaketmanagement.html: *.txt */*.txt */*/*.txt Makefile
asciidoc -a toc -a toclevels=3 debian-paketmanagement.txt
epub debianpaketmanagement.epub: *.txt */*.txt */*/*.txt Makefile
a2x -L -f epub debian-paketmanagement.txt
pdf debianpaketmanagement.pdf: *.txt */*.txt */*/*.txt Makefile
a2x -L -f pdf debian-paketmanagement.txt
clean:
rm -rvf *.html *.epub *.epub.d debian-paketmanagement.xml *.fls *.log debian-paketmanagement.pdf
xmllint:
asciidoc -a toc -a toclevels=3 -d book -b docbook debian-paketmanagement.txt
xmllint debian-paketmanagement.xml
verbose: html-verbose epub-verbose pdf-verbose
html-verbose: *.txt */*.txt */*/*.txt Makefile
asciidoc -v -a toc -a toclevels=3 debian-paketmanagement.txt
epub-verbose: *.txt */*.txt */*/*.txt Makefile
a2x -v -v -L -f epub debian-paketmanagement.txt
pdf-verbose: *.txt */*.txt */*/*.txt Makefile
a2x -v -v -L -f pdf debian-paketmanagement.txt