Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/makefile @ 294:8271d217933c
Added more help files
author | boisy |
---|---|
date | Mon, 22 Jul 2002 00:24:03 +0000 |
parents | 404d2a69646f |
children | 1ecde21f77f7 |
rev | line source |
---|---|
0 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
50 | 4 TPB = ../../3rdparty/booters |
0 | 5 |
238 | 6 BOOTERS = oscode oscode_d64 boot_1773 boot_d64 $(TPB)/boot_rom_l1 rom_vectors |
0 | 7 KERNELS = os9 os9p2 |
8 SYSMODS = rominfo ioman init | |
241 | 9 CLOCKS = clock.60hz clock.50hz clock_d64 |
0 | 10 FMGRS = scf.mn rbf.mn pipeman.mn |
11 DRIVERS = aciapak.dr cchdisk.dr ccdisk.dr modpak.dr nildrv.dr \ | |
241 | 12 piper.dr printer.dr rs232.dr sscpak.dr ccio.dr \ |
13 ddisk.dr kbvdio.dr | |
0 | 14 IOSUBS = co32.io co80.io grfo.io |
293
404d2a69646f
Added more help files for additional verbose descriptors, removed
boisy
parents:
291
diff
changeset
|
15 DESCS = ddd0_35s.dd d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \ |
404d2a69646f
Added more help files for additional verbose descriptors, removed
boisy
parents:
291
diff
changeset
|
16 ddd0_40d.dd d0_40d.dd d1_40d.dd d2_40d.dd \ |
404d2a69646f
Added more help files for additional verbose descriptors, removed
boisy
parents:
291
diff
changeset
|
17 ddd0_80d.dd d0_80d.dd d1_80d.dd d2_80d.dd \ |
291
7625c04ca486
Removed dd and d0-d3.asm to be replaced with verbose descriptor filenames
boisy
parents:
275
diff
changeset
|
18 h0_15.dd h1_15.dd h0_35.dd h1_35.dd \ |
7625c04ca486
Removed dd and d0-d3.asm to be replaced with verbose descriptor filenames
boisy
parents:
275
diff
changeset
|
19 m1.dd m2.dd nil.dd p.dd pipe.dd ssc.dd \ |
7625c04ca486
Removed dd and d0-d3.asm to be replaced with verbose descriptor filenames
boisy
parents:
275
diff
changeset
|
20 t1.dd t2.dd t3.dd term32.dd term80.dd \ |
241 | 21 p1_d64.dd term_d64.dd t1_d64.dd \ |
239
8b71b12c468f
Checking in the floppy disk device descriptors for Dragon 64
roug
parents:
238
diff
changeset
|
22 dd_d64.dd d0_d64.dd d1_d64.dd d2_d64.dd d3_d64.dd |
241 | 23 SYSGOS = sysgo sysgo_rom sysgo_d64 |
294 | 24 HELP = co32.hp co80.hp \ |
25 ddd0_35s.hp d0_35s.hp d1_35s.hp d2_35s.hp d3_35s.hp \ | |
26 ddd0_40d.hp d0_40d.hp d1_40d.hp d2_40d.hp \ | |
27 ddd0_80d.hp d0_80d.hp d1_80d.hp d2_80d.hp \ | |
28 grfo.hp h0_15.hp \ | |
179 | 29 h0_35.hp h1_15.hp h1_35.hp m1.hp m2.hp nil.hp p.hp pipe.hp \ |
30 ssc.hp t1.hp t2.hp t3.hp term32.hp term80.hp config.hp | |
177 | 31 |
198 | 32 KERNEL_1773 = oscode os9 os9p2 init boot_1773 |
238 | 33 KERNEL_D64 = oscode_d64 os9 os9p2 init boot_d64 |
198 | 34 KERNEL_ROM = oscode os9 os9p2 init $(TPB)/boot_rom_l1 |
0 | 35 |
198 | 36 BOOT_TRACKS = kernel_1773 kernel_rom |
37 ALLOBJS = $(BOOTERS) $(KERNELS) $(SYSMODS) $(CLOCKS) $(FMGRS) \ | |
38 $(DRIVERS) $(IOSUBS) $(DESCS) $(SYSGOS) $(BOOT_TRACKS) | |
0 | 39 |
177 | 40 all: $(ALLOBJS) $(HELP) |
41 $(UNIX2OS9) $(HELP) | |
0 | 42 |
43 # Kernel track for OS-9 in ROM on a CoCo | |
44 kernel_rom: $(KERNEL_ROM) $(DEPENDS) | |
45 $(MERGE) $(KERNEL_ROM)>$@ | |
46 $(PADROM) \$$1200 $@ -c=\$$E5 | |
47 | |
48 # Kernel track for Tandy/RS controller (WD1773) | |
49 kernel_1773: $(KERNEL_1773) $(DEPENDS) | |
50 $(MERGE) $(KERNEL_1773)>$@ | |
51 $(PADROM) \$$1200 $@ -c=\$$E5 | |
52 | |
238 | 53 kernel_d64: $(KERNEL_D64) $(DEPENDS) |
54 $(MERGE) $(KERNEL_D64)>$@ | |
55 $(PADROM) \$$1000 $@ -c=\$$E5 | |
56 | |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
57 oscode: oscode.asm |
236 | 58 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDragon64=0 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
59 |
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
60 oscode_d64: oscode.asm |
236 | 61 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDragon64=1 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
62 |
275 | 63 sysgo: sysgo.asm |
64 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDiskGo=1 | |
65 | |
66 sysgo_rom: sysgo.asm | |
67 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDiskGo=0 | |
68 | |
0 | 69 clean: |
70 $(RM) $(ALLOBJS) | |
177 | 71 $(OS92UNIX) $(HELP) |
0 | 72 |
95 | 73 identify: |
74 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 75 |
76 showobjs: | |
77 @echo $(ALLOBJS) |