blob: 6856138050d7c0cab8c1dd8904ad3272b39e0b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# The toplevel DocBook file of our project
DOCUMENT = MyDocument.xml
# Attacments (Optional). These will be attached to the generated PDF.
# Requires 'pdftk'
DOCUMENT_ATTACHMENTS = MyAttachment.txt
# Include the DocBook Kit's makefile rules
include docbook-kit/tools/Makefile.inc
# Create a 'make check' shortcut for all kinds of validity checking
check: check-document check-spelling
# If you have generated files, add custom rules for them
MyGeneratedFile.xml:
echo "<para>This is a generated file</para>" > $@
CLEANFILES += MyGeneratedFile.xml fop.cfg
|