Mercurial > hg > Members > kono > nitros9-code
comparison 3rdparty/booters/makefile @ 1168:3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
author | boisy |
---|---|
date | Mon, 19 May 2003 11:22:34 +0000 |
parents | d2ce1c213a9c |
children | 36deea38aabb |
comparison
equal
deleted
inserted
replaced
1167:a3d0ac951684 | 1168:3be7fce1a56b |
---|---|
2 | 2 |
3 DEPENDS = ./Makefile | 3 DEPENDS = ./Makefile |
4 BOOTERS_NITROS = boot_ide_nl2 | 4 BOOTERS_NITROS = boot_ide_nl2 |
5 BOOTERS_L2 = boot_ktlr_id0 boot_ktlr_id5 boot_rampak \ | 5 BOOTERS_L2 = boot_ktlr_id0 boot_ktlr_id5 boot_rampak \ |
6 boot_tc3_id0 boot_tc3_id5 boot_ide boot_wd1002 \ | 6 boot_tc3_id0 boot_tc3_id5 boot_ide boot_wd1002 \ |
7 boot_burke boot_rom boot_vhd | 7 boot_burke boot_rom boot_vhd boot_mmc_l2 |
8 BOOTERS_L1 = boot_ktlr_id0_l1 boot_ktlr_id5_l1 boot_rampak_l1 \ | 8 BOOTERS_L1 = boot_ktlr_id0_l1 boot_ktlr_id5_l1 boot_rampak_l1 \ |
9 boot_tc3_id0_l1 boot_tc3_id5_l1 boot_ide_l1 \ | 9 boot_tc3_id0_l1 boot_tc3_id5_l1 boot_ide_l1 \ |
10 boot_burke_l1 boot_rom_l1 | 10 boot_burke_l1 boot_rom_l1 boot_mmc_l1 |
11 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1) | 11 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1) |
12 | 12 |
13 all: $(ALLOBJS) $(DEPENDS) | 13 all: $(ALLOBJS) $(DEPENDS) |
14 | 14 |
15 clean: | 15 clean: |
23 # OS-9 Level Two Booters | 23 # OS-9 Level Two Booters |
24 boot_ide: boot_ide.asm | 24 boot_ide: boot_ide.asm |
25 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | 25 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
26 | 26 |
27 boot_ktlr_id0: boot_scsi.asm | 27 boot_ktlr_id0: boot_scsi.asm |
28 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 | 28 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=1 |
29 | 29 |
30 boot_ktlr_id5: boot_scsi.asm | 30 boot_ktlr_id5: boot_scsi.asm |
31 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 -ascsiid=32 | 31 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=32 |
32 | 32 |
33 boot_rampak: boot_rampak.asm | 33 boot_rampak: boot_rampak.asm |
34 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | 34 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
35 | 35 |
36 boot_tc3_id0: boot_scsi.asm | 36 boot_tc3_id0: boot_scsi.asm |
37 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 | 37 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=1 |
38 | 38 |
39 boot_tc3_id5: boot_scsi.asm | 39 boot_tc3_id5: boot_scsi.asm |
40 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=32 | 40 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=32 |
41 | 41 |
42 boot_wd1002: boot_wd1002.asm | 42 boot_wd1002: boot_wd1002.asm |
49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | 49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
50 | 50 |
51 boot_vhd: boot_vhd.asm | 51 boot_vhd: boot_vhd.asm |
52 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | 52 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
53 | 53 |
54 boot_mmc_l2: boot_mmc.asm | |
55 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
56 | |
54 # OS-9 Level One Booters | 57 # OS-9 Level One Booters |
55 boot_rom_l1: boot_rom_l1.asm | 58 boot_rom_l1: boot_rom_l1.asm |
56 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | 59 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 |
57 | 60 |
58 boot_ktlr_id0_l1: boot_scsi.asm | 61 boot_ktlr_id0_l1: boot_scsi.asm |
59 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 | 62 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=1 |
60 | 63 |
61 boot_ktlr_id5_l1: boot_scsi.asm | 64 boot_ktlr_id5_l1: boot_scsi.asm |
62 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -ascsiid=32 | 65 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=32 |
63 | 66 |
64 boot_tc3_id0_l1: boot_scsi.asm | 67 boot_tc3_id0_l1: boot_scsi.asm |
65 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 | 68 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=1 |
66 | 69 |
67 boot_tc3_id5_l1: boot_scsi.asm | 70 boot_tc3_id5_l1: boot_scsi.asm |
68 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=32 | 71 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=32 |
69 | 72 |
70 boot_rampak_l1: boot_rampak.asm | 73 boot_rampak_l1: boot_rampak.asm |
74 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | 77 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 |
75 | 78 |
76 boot_ide_l1: boot_ide.asm | 79 boot_ide_l1: boot_ide.asm |
77 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | 80 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 |
78 | 81 |
82 boot_mmc_l1: boot_mmc.asm | |
83 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
84 | |
85 |