Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/makefile @ 253:762792d92c57
Slight changes to source
author | boisy |
---|---|
date | Sat, 20 Jul 2002 04:43:05 +0000 |
parents | 16748cbd3fd5 |
children | 0161c9d61403 |
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 |
181 | 15 DESCS = dd.dd d0.dd d1.dd d2.dd d3.dd h0_15.dd h1_15.dd h0_35.dd \ |
0 | 16 h1_35.dd m1.dd m2.dd nil.dd p.dd pipe.dd ssc.dd t1.dd \ |
239
8b71b12c468f
Checking in the floppy disk device descriptors for Dragon 64
roug
parents:
238
diff
changeset
|
17 t2.dd t3.dd term32.dd term80.dd \ |
241 | 18 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
|
19 dd_d64.dd d0_d64.dd d1_d64.dd d2_d64.dd d3_d64.dd |
241 | 20 SYSGOS = sysgo sysgo_rom sysgo_d64 |
181 | 21 HELP = co32.hp co80.hp dd.hp d0.hp d1.hp d2.hp d3.hp grfo.hp h0_15.hp \ |
179 | 22 h0_35.hp h1_15.hp h1_35.hp m1.hp m2.hp nil.hp p.hp pipe.hp \ |
23 ssc.hp t1.hp t2.hp t3.hp term32.hp term80.hp config.hp | |
177 | 24 |
198 | 25 KERNEL_1773 = oscode os9 os9p2 init boot_1773 |
238 | 26 KERNEL_D64 = oscode_d64 os9 os9p2 init boot_d64 |
198 | 27 KERNEL_ROM = oscode os9 os9p2 init $(TPB)/boot_rom_l1 |
0 | 28 |
198 | 29 BOOT_TRACKS = kernel_1773 kernel_rom |
30 ALLOBJS = $(BOOTERS) $(KERNELS) $(SYSMODS) $(CLOCKS) $(FMGRS) \ | |
31 $(DRIVERS) $(IOSUBS) $(DESCS) $(SYSGOS) $(BOOT_TRACKS) | |
0 | 32 |
177 | 33 all: $(ALLOBJS) $(HELP) |
34 $(UNIX2OS9) $(HELP) | |
0 | 35 |
36 # Kernel track for OS-9 in ROM on a CoCo | |
37 kernel_rom: $(KERNEL_ROM) $(DEPENDS) | |
38 $(MERGE) $(KERNEL_ROM)>$@ | |
39 $(PADROM) \$$1200 $@ -c=\$$E5 | |
40 | |
41 # Kernel track for Tandy/RS controller (WD1773) | |
42 kernel_1773: $(KERNEL_1773) $(DEPENDS) | |
43 $(MERGE) $(KERNEL_1773)>$@ | |
44 $(PADROM) \$$1200 $@ -c=\$$E5 | |
45 | |
238 | 46 kernel_d64: $(KERNEL_D64) $(DEPENDS) |
47 $(MERGE) $(KERNEL_D64)>$@ | |
48 $(PADROM) \$$1000 $@ -c=\$$E5 | |
49 | |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
50 oscode: oscode.asm |
236 | 51 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDragon64=0 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
52 |
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
53 oscode_d64: oscode.asm |
236 | 54 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDragon64=1 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
55 |
0 | 56 clean: |
57 $(RM) $(ALLOBJS) | |
177 | 58 $(OS92UNIX) $(HELP) |
0 | 59 |
95 | 60 identify: |
61 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 62 |
63 showobjs: | |
64 @echo $(ALLOBJS) |