Mercurial > hg > Members > kono > nitros9-code
annotate level2/coco3_6309/bootfiles/makefile @ 1363:53c50c807d55
Major move to new NitrOS-9 project
author | boisy |
---|---|
date | Fri, 26 Sep 2003 12:26:10 +0000 |
parents | f3d2c2164996 |
children | 62991148cab4 |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
0 | 2 |
3 # Module directory | |
4 MD = ../MODULES | |
5 # Commands directory | |
6 CD = ../CMDS | |
7 | |
1363 | 8 DEPENDS = ./makefile |
0 | 9 |
1237 | 10 KERNEL_STOCK = $(MD)/rel_32 $(MD)/boot_1773_6ms $(MD)/os9p1 |
0 | 11 |
12 # OS-9 disk bootfile to allow booting from WD1773 disk controller | |
707 | 13 BOOTFILE_VDG = $(MD)/os9p2 $(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 \ |
1270 | 17 $(MD)/rammer.dr $(MD)/r0_128k.dd \ |
429 | 18 $(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
|
19 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 20 $(MD)/windint.io $(MD)/vdgint.io \ |
429 | 21 $(MD)/term_vdg.dt \ |
22 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
23 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
24 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 25 $(MD)/clock_60hz $(MD)/clock2_soft |
0 | 26 |
707 | 27 BOOTFILE_WIN40 = $(MD)/os9p2 $(MD)/ioman $(MD)/init \ |
28 $(MD)/rbf.mn \ | |
29 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ | |
30 $(MD)/ddd0_40d.dd \ | |
31 $(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
|
32 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 33 $(MD)/windint.io $(MD)/vdgint.io \ |
707 | 34 $(MD)/term_win40.dt \ |
35 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
36 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
37 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 38 $(MD)/clock_60hz $(MD)/clock2_soft |
707 | 39 |
40 BOOTFILE_WIN80 = $(MD)/os9p2 $(MD)/ioman $(MD)/init \ | |
41 $(MD)/rbf.mn \ | |
42 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd \ | |
43 $(MD)/ddd0_40d.dd \ | |
44 $(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
|
45 $(MD)/keydrv_cc3.sb $(MD)/joydrv_joy.sb $(MD)/snddrv_cc3.sb \ |
768 | 46 $(MD)/windint.io $(MD)/vdgint.io \ |
707 | 47 $(MD)/term_win80.dt \ |
48 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ | |
49 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ | |
50 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ | |
1265 | 51 $(MD)/clock_60hz $(MD)/clock2_soft |
707 | 52 |
1096 | 53 BOOTFILES = bootfile_vdg bootfile_win40 bootfile_win80 |
54 KERNELS = kernel_stock | |
0 | 55 |
428 | 56 ALLOBJS = $(BOOTFILES) $(KERNELS) |
57 | |
58 all: $(ALLOBJS) | |
0 | 59 |
1089 | 60 # Bootfiles |
707 | 61 bootfile_vdg: $(BOOTFILE_VDG) $(DEPENDS) |
62 $(MERGE) $(BOOTFILE_VDG)>$@ | |
63 | |
64 bootfile_win40: $(BOOTFILE_WIN40) $(DEPENDS) | |
65 $(MERGE) $(BOOTFILE_WIN40)>$@ | |
66 | |
67 bootfile_win80: $(BOOTFILE_WIN80) $(DEPENDS) | |
68 $(MERGE) $(BOOTFILE_WIN80)>$@ | |
428 | 69 |
1089 | 70 # Kernels |
509 | 71 kernel_stock: $(KERNEL_STOCK) $(DEPENDS) |
72 $(MERGE) $(KERNEL_STOCK)>$@ | |
0 | 73 |
74 clean: | |
428 | 75 $(RM) $(ALLOBJS) |
0 | 76 |