Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/booters/makefile @ 392:df43967d6a46
Minor source changes, added boot_burke
author | boisy |
---|---|
date | Sun, 25 Aug 2002 19:36:23 +0000 |
parents | 20e8c354b914 |
children | 3362a5cd8259 |
rev | line source |
---|---|
45 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
279 | 4 BOOTERS_NITROS = boot_ide_nl2 |
5 BOOTERS_L2 = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \ | |
392 | 6 boot_burke boot_rom |
279 | 7 BOOTERS_L1 = boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_ide_l1 \ |
392 | 8 boot_burke_l1 boot_rom_l1 |
279 | 9 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1) |
45 | 10 |
11 all: $(ALLOBJS) $(DEPENDS) | |
12 | |
13 clean: | |
14 $(RM) $(ALLOBJS) | |
15 | |
65 | 16 |
279 | 17 # NitrOS-9 Booters |
18 boot_ide_nl2: boot_ide.asm | |
19 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1 | |
20 | |
21 # OS-9 Level Two Booters | |
22 boot_ide: boot_ide.asm | |
392 | 23 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
279 | 24 |
68 | 25 boot_kenton: boot_scsi.asm |
392 | 26 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 |
65 | 27 |
28 boot_rampak: boot_rampak.asm | |
29 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
30 | |
68 | 31 boot_tc3: boot_scsi.asm |
392 | 32 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 |
65 | 33 |
34 boot_wd1002: boot_wd1002.asm | |
35 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
36 | |
392 | 37 boot_burke: boot_burke.asm |
38 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
39 | |
65 | 40 boot_rom: boot_rom.asm |
41 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
42 | |
279 | 43 # OS-9 Level One Booters |
65 | 44 boot_rom_l1: boot_rom_l1.asm |
45 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
46 | |
68 | 47 boot_kenton_l1: boot_scsi.asm |
392 | 48 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 |
65 | 49 |
68 | 50 boot_tc3_l1: boot_scsi.asm |
392 | 51 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 |
65 | 52 |
279 | 53 boot_rampak_l1: boot_rampak.asm |
54 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
93
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
55 |
392 | 56 boot_burke_l1: boot_burke.asm |
57 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
58 | |
93
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
59 boot_ide_l1: boot_ide.asm |
392 | 60 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 |
93
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
61 |