annotate 3rdparty/packages/rof/makefile @ 989:979b7f290efc

First pass disassembly and comments. Comments from 1992 disasm included. Requires Level 2 defs set Level equ 2 in this file should be in a defsfile.
author pwz
date Fri, 21 Feb 2003 04:34:39 +0000
parents ea69ed12af12
children f174634f2306
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
1 include ../../../Makefile.rules
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
2
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
3 DEPENDS = ./Makefile
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
4
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
5 DISK = rof.dsk
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
6 CMDS = rescue
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
7 MD = $(LEVEL2)/MODULES
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
8
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
9 # We make our own bootfile and kernel track
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
10 KERNEL = $(MD)/rel $(MD)/boot_1773 $(MD)/os9p1
753
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
11 OS9BOOT = $(MD)/os9p2 $(MD)/ioman $(MD)/init \
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
12 $(MD)/rbf.mn \
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
13 $(MD)/cc3disk.dr $(MD)/ddd0_40d.dd \
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
14 $(MD)/scf.mn $(MD)/cc3io.dr \
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
15 $(MD)/keydrv $(MD)/joydrv_joy $(MD)/snddrv \
775
492fed67becf Now uses vdgint_small.io
boisy
parents: 764
diff changeset
16 $(MD)/vdgint_small.io $(MD)/term_vdg.dt \
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
17 $(MD)/clock_soft $(MD)/cc3go
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
18
585
a93ff297742a Fixed small space problem
boisy
parents: 584
diff changeset
19 SUPPORTFILES = body heads larms legs lips panel1 rofvar rship.c rtitle.c scores
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
20
809
boisy
parents: 807
diff changeset
21 ALLOBJS = $(CMDS)
boisy
parents: 807
diff changeset
22
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
23 all: $(ALLOBJS)
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
24 $(CHMOD) 755 $(CMDS)
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
25
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
26 clean: dskclean
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
27 $(RM) $(ALLOBJS)
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
28
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
29 dsk: all
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
30 $(RM) $(DISK)
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
31 $(CD) $(LEVEL2); make
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 809
diff changeset
32 $(OS9FORMAT_SS35) $(DISK) -n"Rescue on Fractalus"
750
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
33 $(MERGE) $(OS9BOOT)>os9boot
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
34 $(MERGE) $(KERNEL)>kernel_1773
1bc9f2ecac47 bootfile and kernel are made remotely but assembled localy into os9boot
boisy
parents: 749
diff changeset
35 $(OS9GEN) $(DISK) os9boot kernel_1773
759
d7875e9326c3 Changed
boisy
parents: 753
diff changeset
36 $(RM) os9boot kernel_1773
749
ec1909ff0764 Updated Makefile
boisy
parents: 585
diff changeset
37 $(MAKDIR) $(DISK),CMDS
753
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
38 $(CP) $(LEVEL2)/CMDS/shell_21 $(DISK),CMDS/shell
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
39 $(CP) $(CMDS) $(DISK),CMDS
c5840f667d94 Now dsk image is properly made and works fine
boisy
parents: 750
diff changeset
40 $(OS9RENAME) $(DISK),CMDS/rescue AutoEx
749
ec1909ff0764 Updated Makefile
boisy
parents: 585
diff changeset
41 $(CP) $(SUPPORTFILES) $(DISK),.
584
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
42
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
43 dskclean:
d8d359aca5b7 Cleaned extraneous CRs
boisy
parents: 513
diff changeset
44 $(RM) $(DISK)