annotate docs/basic09/makefile @ 1148:bc28c3bc3769

Put all stylesheets in one central location
author roug
date Sun, 27 Apr 2003 19:41:14 +0000
parents 28d9e5a4ef52
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
1 BOOK = basic09
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 649
diff changeset
2 STYLESHEET = ../stylesheets/docbook-utils.dsl
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
3
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
4 all: $(BOOK).pdf
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
5
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
6 $(BOOK).pdf: $(BOOK).docbook $(STYLESHEET)
649
28d9e5a4ef52 XMLified
roug
parents: 515
diff changeset
7 docbook2pdf -d $(STYLESHEET)#print $(BOOK).docbook
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
8
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
9 $(BOOK).ps: $(BOOK).docbook $(STYLESHEET)
649
28d9e5a4ef52 XMLified
roug
parents: 515
diff changeset
10 docbook2ps -d $(STYLESHEET)#print $(BOOK).docbook
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
11
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 649
diff changeset
12 $(BOOK).html: $(BOOK).docbook $(STYLESHEET)
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 649
diff changeset
13 $(RM) *.html
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
14 # jade -t sgml -V html-index -d /usr/share/sgml/docbook/dsssl-stylesheets-1.64/html/docbook.dsl $(BOOK).docbook
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
15 # collateindex.pl -p -o index.docbook HTML.index
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
16 docbook2html -d $(STYLESHEET)#html $(BOOK).docbook
24
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
17
01a6e267aa38 Added the Basic09 Reference Manual
roug
parents:
diff changeset
18 print:
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
19 psnup -2 $(BOOK).ps | lpr
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
20
87fe15316ccc Sprused up Makefiles
boisy
parents: 101
diff changeset
21 clean:
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 649
diff changeset
22 $(RM) *.html $(BOOK).pdf $(BOOK).ps