Mercurial > hg > Members > kono > nitros9-code
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 |
rev | line source |
---|---|
584 | 1 include ../../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
4 | |
5 DISK = rof.dsk | |
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 | 11 OS9BOOT = $(MD)/os9p2 $(MD)/ioman $(MD)/init \ |
12 $(MD)/rbf.mn \ | |
13 $(MD)/cc3disk.dr $(MD)/ddd0_40d.dd \ | |
14 $(MD)/scf.mn $(MD)/cc3io.dr \ | |
15 $(MD)/keydrv $(MD)/joydrv_joy $(MD)/snddrv \ | |
775 | 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 | 19 SUPPORTFILES = body heads larms legs lips panel1 rofvar rship.c rtitle.c scores |
584 | 20 |
809 | 21 ALLOBJS = $(CMDS) |
22 | |
584 | 23 all: $(ALLOBJS) |
24 $(CHMOD) 755 $(CMDS) | |
25 | |
26 clean: dskclean | |
27 $(RM) $(ALLOBJS) | |
28 | |
29 dsk: all | |
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 | 36 $(RM) os9boot kernel_1773 |
749 | 37 $(MAKDIR) $(DISK),CMDS |
753 | 38 $(CP) $(LEVEL2)/CMDS/shell_21 $(DISK),CMDS/shell |
39 $(CP) $(CMDS) $(DISK),CMDS | |
40 $(OS9RENAME) $(DISK),CMDS/rescue AutoEx | |
749 | 41 $(CP) $(SUPPORTFILES) $(DISK),. |
584 | 42 |
43 dskclean: | |
44 $(RM) $(DISK) |