annotate docs/basic09/makefile @ 2772:0a3f4d8ea6d5

Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected. Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author drencor-xeen
date Wed, 23 Jan 2013 12:36:55 -0600
parents bc28c3bc3769
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