annotate docs/nitros9guide/makefile @ 1148:bc28c3bc3769

Put all stylesheets in one central location
author roug
date Sun, 27 Apr 2003 19:41:14 +0000
parents 4dae346c4969
children b00cf13c9f61
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
1 BOOKL1 = os9l1guide
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
2 BOOKL2 = os9l2guide
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
3 STYLESHEET = ../stylesheets/docbook-utils.dsl
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
4
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
5 all: $(BOOKL1).pdf $(BOOKL2).pdf
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
6
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
7 $(BOOKL1).pdf: $(BOOKL1).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
8 docbook2pdf -d $(STYLESHEET)#print $(BOOKL1).docbook
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
9
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
10 $(BOOKL2).pdf: $(BOOKL2).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
11 docbook2pdf -d $(STYLESHEET)#print $(BOOKL2).docbook
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
12
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
13 $(BOOKL1).ps: $(BOOKL1).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
14 docbook2ps -d $(STYLESHEET)#print $(BOOKL1).docbook
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
15
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
16 $(BOOKL2).ps: $(BOOKL2).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
17 docbook2ps -d $(STYLESHEET)#print $(BOOKL2).docbook
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
18
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
19 $(BOOKL1).html: $(BOOKL1).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
20 $(RM) *.html
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
21 # jade -t sgml -V html-index -d /usr/share/sgml/docbook/dsssl-stylesheets-1.64/html/docbook.dsl $(BOOKL1).docbook
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
22 # collateindex.pl -p -o index.docbook HTML.index
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
23 docbook2html -d $(STYLESHEET)#html $(BOOKL1).docbook
515
87fe15316ccc Sprused up Makefiles
boisy
parents: 103
diff changeset
24
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
25 $(BOOKL2).html: $(BOOKL2).docbook $(SRCS)
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
26 $(RM) *.html
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
27 # jade -t sgml -V html-index -d /usr/share/sgml/docbook/dsssl-stylesheets-1.64/html/docbook.dsl $(BOOKL2).docbook
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
28 # collateindex.pl -p -o index.docbook HTML.index
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
29 docbook2html -d $(STYLESHEET)#html $(BOOKL2).docbook
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
30
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
31 print: $(BOOKL1).ps $(BOOKL2).ps
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
32 psnup -2 $(BOOKL1).ps | lpr
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
33 psnup -2 $(BOOKL2).ps | lpr
103
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
34
32bd5072b3a5 Added the OS9 User's Manual for Dragon-64.
roug
parents:
diff changeset
35 clean:
1148
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
36 $(RM) *.html $(BOOKL1).pdf $(BOOKL1).ps $(BOOKL2).pdf \
bc28c3bc3769 Put all stylesheets in one central location
roug
parents: 1093
diff changeset
37 $(BOOKL2).ps *.log *.out *.aux
1011
cc153d1671f7 Updated for new manuals
boisy
parents: 727
diff changeset
38
727
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
39 SRCS = $(CHAPS) $(APXS) $(REFS)
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
40 CHAPS = intro.preface \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
41 chap1.chapter chap2.chapter chap3.chapter chap4.chapter \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
42 chap5.chapter chap6.chapter chap7.chapter
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
43 APXS = acia51.appendix display.appendix errorcodes.appendix keys.appendix
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
44 REFS = asm.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
45 attr.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
46 backup.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
47 binex.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
48 build.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
49 chd.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
50 cmp.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
51 cobbler.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
52 config.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
53 copy.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
54 date.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
55 dcheck.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
56 debug.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
57 deiniz.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
58 deldir.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
59 del.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
60 dir.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
61 display.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
62 dsave.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
63 dump.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
64 echo.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
65 error.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
66 ex.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
67 format.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
68 free.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
69 go51.appendix \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
70 go51.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
71 help.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
72 ident.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
73 iniz.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
74 kill.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
75 link.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
76 list.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
77 load.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
78 login.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
79 makdir.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
80 mdir.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
81 merge.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
82 mfree.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
83 os9gen.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
84 park.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
85 printerr.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
86 procs.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
87 pwd.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
88 rename.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
89 save.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
90 setime.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
91 setpr.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
92 shell.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
93 sleep.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
94 tee.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
95 tmode.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
96 tsmon.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
97 tuneport.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
98 unlink.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
99 verify.refentry \
72443b44537e Debug is part of the manual now.
roug
parents: 515
diff changeset
100 xmode.refentry