Mercurial > hg > Members > kono > nitros9-code
annotate docs/os9sysprog/makefile @ 710:4b8f2de93c51
Added DS40 target
author | boisy |
---|---|
date | Sat, 04 Jan 2003 02:23:45 +0000 |
parents | 85a3168ccab5 |
children | bc28c3bc3769 |
rev | line source |
---|---|
515 | 1 BOOK = os9sysprog |
2 STYLESHEET = docbook-utils.dsl | |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
3 |
515 | 4 all: $(BOOK).pdf |
20 | 5 |
515 | 6 $(BOOK).pdf: $(BOOK).docbook $(STYLESHEET) |
7 docbook2pdf $(BOOK).docbook | |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
8 |
515 | 9 $(BOOK).ps: $(BOOK).docbook $(STYLESHEET) |
10 docbook2ps $(BOOK).docbook | |
526
85a3168ccab5
Small conflict caused by boisy's update to the Makefile
roug
parents:
515
diff
changeset
|
11 # docbook2ps -d "$(STYLESHEET)#print" $(BOOK).docbook |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
12 |
515 | 13 $(BOOK).html: $(BOOK).docbook $(STYLESHEET) |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
14 rm -f *.htm *.html |
515 | 15 # jade -t sgml -V html-index -d /usr/share/sgml/docbook/dsssl-stylesheets-1.64/html/docbook.dsl $(BOOK).docbook |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
16 # collateindex.pl -p -o index.docbook HTML.index |
515 | 17 docbook2html $(BOOK).docbook |
19
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
18 |
2caf0658040d
This is the first cut of the OS-9 Operating System: System Programmer's Manual
roug
parents:
diff
changeset
|
19 print: |
515 | 20 psnup -2 $(BOOK).ps | lpr |
21 | |
22 clean: | |
23 $(RM) *.htm *.html $(BOOK).pdf $(BOOK).ps |