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