515
|
1 BOOK = os9guide
|
|
2 STYLESHEET = docbook-utils.dsl
|
103
|
3
|
515
|
4 all: $(BOOK).pdf
|
103
|
5
|
727
|
6 $(BOOK).pdf: $(BOOK).docbook $(SRCS)
|
515
|
7 docbook2pdf -d docbook-utils-a4.dsl#print $(BOOK).docbook
|
103
|
8
|
727
|
9 $(BOOK).ps: $(BOOK).docbook $(SRCS)
|
515
|
10 docbook2ps -d docbook-utils-a4.dsl#print $(BOOK).docbook
|
|
11 # docbook2ps -d $(STYLESHEET) $(BOOK).docbook
|
103
|
12
|
727
|
13 $(BOOK).html: $(BOOK).docbook $(SRCS)
|
515
|
14 $(RM) *.htm *.html
|
|
15 # jade -t sgml -V html-index -d /usr/share/sgml/docbook/dsssl-stylesheets-1.64/html/docbook.dsl $(BOOK).docbook
|
103
|
16 # collateindex.pl -p -o index.docbook HTML.index
|
515
|
17 docbook2html -d docbook-utils-a4.dsl#html $(BOOK).docbook
|
|
18
|
|
19 print: $(BOOK).ps
|
|
20 psnup -2 $(BOOK).ps | lpr
|
103
|
21
|
|
22 clean:
|
515
|
23 $(RM) *.htm *.html $(BOOK).pdf $(BOOK).ps
|
727
|
24 SRCS = $(CHAPS) $(APXS) $(REFS)
|
|
25 CHAPS = intro.preface \
|
|
26 chap1.chapter chap2.chapter chap3.chapter chap4.chapter \
|
|
27 chap5.chapter chap6.chapter chap7.chapter
|
|
28 APXS = acia51.appendix display.appendix errorcodes.appendix keys.appendix
|
|
29 REFS = asm.refentry \
|
|
30 attr.refentry \
|
|
31 backup.refentry \
|
|
32 binex.refentry \
|
|
33 build.refentry \
|
|
34 chd.refentry \
|
|
35 cmp.refentry \
|
|
36 cobbler.refentry \
|
|
37 config.refentry \
|
|
38 copy.refentry \
|
|
39 date.refentry \
|
|
40 dcheck.refentry \
|
|
41 debug.refentry \
|
|
42 deiniz.refentry \
|
|
43 deldir.refentry \
|
|
44 del.refentry \
|
|
45 dir.refentry \
|
|
46 display.refentry \
|
|
47 dsave.refentry \
|
|
48 dump.refentry \
|
|
49 echo.refentry \
|
|
50 error.refentry \
|
|
51 ex.refentry \
|
|
52 format.refentry \
|
|
53 free.refentry \
|
|
54 go51.appendix \
|
|
55 go51.refentry \
|
|
56 help.refentry \
|
|
57 ident.refentry \
|
|
58 iniz.refentry \
|
|
59 kill.refentry \
|
|
60 link.refentry \
|
|
61 list.refentry \
|
|
62 load.refentry \
|
|
63 login.refentry \
|
|
64 makdir.refentry \
|
|
65 mdir.refentry \
|
|
66 merge.refentry \
|
|
67 mfree.refentry \
|
|
68 os9gen.refentry \
|
|
69 park.refentry \
|
|
70 printerr.refentry \
|
|
71 procs.refentry \
|
|
72 pwd.refentry \
|
|
73 rename.refentry \
|
|
74 save.refentry \
|
|
75 setime.refentry \
|
|
76 setpr.refentry \
|
|
77 shell.refentry \
|
|
78 sleep.refentry \
|
|
79 tee.refentry \
|
|
80 tmode.refentry \
|
|
81 tsmon.refentry \
|
|
82 tuneport.refentry \
|
|
83 unlink.refentry \
|
|
84 verify.refentry \
|
|
85 xmode.refentry
|