Mercurial > hg > Members > kono > nitros9-code
annotate level2/coco3/bootfiles/makefile @ 1437:ce7caf9c412c
Removed rammer from bootfile
author | boisy |
---|---|
date | Wed, 03 Dec 2003 19:08:53 +0000 |
parents | 79dde72f9d96 |
children | 7687a6621d7a |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
0 | 2 |
3 # Module directory | |
1379 | 4 MD = ../modules |
0 | 5 # Commands directory |
1379 | 6 CD = ../cmds |
0 | 7 |
1363 | 8 DEPENDS = ./makefile |
0 | 9 |
1370 | 10 KERNEL_STOCK = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/kernel |
0 | 11 |
12 # OS-9 disk bootfile to allow booting from WD1773 disk controller | |
1370 | 13 BOOTFILE_VDG = $(MD)/kernelp2 $(MD)/ioman $(MD)/init \ |
429 | 14 $(MD)/rbf.mn \ |
707 | 15 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ |
429 | 16 $(MD)/ddd0_40d.dd \ |
17 $(MD)/scf.mn $(MD)/cc3io.dr \ | |
1256
3ff579715249
Changes to bootfiles and bootlists to reflect new naming of keydrv, snddrv and
boisy
parents:
1237
diff
changeset
|
18 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 19 $(MD)/windint.io $(MD)/vdgint.io \ |
429 | 20 $(MD)/term_vdg.dt \ |
21 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
22 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
23 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 24 $(MD)/clock_60hz $(MD)/clock2_soft |
0 | 25 |
1370 | 26 BOOTFILE_WIN40 = $(MD)/kernelp2 $(MD)/ioman $(MD)/init \ |
707 | 27 $(MD)/rbf.mn \ |
28 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ | |
29 $(MD)/ddd0_40d.dd \ | |
30 $(MD)/scf.mn $(MD)/cc3io.dr \ | |
1256
3ff579715249
Changes to bootfiles and bootlists to reflect new naming of keydrv, snddrv and
boisy
parents:
1237
diff
changeset
|
31 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 32 $(MD)/windint.io $(MD)/vdgint.io \ |
707 | 33 $(MD)/term_win40.dt \ |
34 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
35 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
36 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 37 $(MD)/clock_60hz $(MD)/clock2_soft |
707 | 38 |
1370 | 39 BOOTFILE_WIN80 = $(MD)/kernelp2 $(MD)/ioman $(MD)/init \ |
707 | 40 $(MD)/rbf.mn \ |
41 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ | |
42 $(MD)/ddd0_40d.dd \ | |
43 $(MD)/scf.mn $(MD)/cc3io.dr \ | |
1256
3ff579715249
Changes to bootfiles and bootlists to reflect new naming of keydrv, snddrv and
boisy
parents:
1237
diff
changeset
|
44 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 45 $(MD)/windint.io $(MD)/vdgint.io \ |
707 | 46 $(MD)/term_win80.dt \ |
47 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
48 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
49 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 50 $(MD)/clock_60hz $(MD)/clock2_soft |
707 | 51 |
1096 | 52 BOOTFILES = bootfile_vdg bootfile_win40 bootfile_win80 |
53 KERNELS = kernel_stock | |
0 | 54 |
428 | 55 ALLOBJS = $(BOOTFILES) $(KERNELS) |
56 | |
57 all: $(ALLOBJS) | |
0 | 58 |
1089 | 59 # Bootfiles |
707 | 60 bootfile_vdg: $(BOOTFILE_VDG) $(DEPENDS) |
61 $(MERGE) $(BOOTFILE_VDG)>$@ | |
62 | |
63 bootfile_win40: $(BOOTFILE_WIN40) $(DEPENDS) | |
64 $(MERGE) $(BOOTFILE_WIN40)>$@ | |
65 | |
66 bootfile_win80: $(BOOTFILE_WIN80) $(DEPENDS) | |
67 $(MERGE) $(BOOTFILE_WIN80)>$@ | |
428 | 68 |
1089 | 69 # Kernels |
509 | 70 kernel_stock: $(KERNEL_STOCK) $(DEPENDS) |
71 $(MERGE) $(KERNEL_STOCK)>$@ | |
0 | 72 |
73 clean: | |
428 | 74 $(RM) $(ALLOBJS) |
0 | 75 |