Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/booters/makefile @ 279:20e8c354b914
Added support for Level One Rampak Boot
author | boisy |
---|---|
date | Sun, 21 Jul 2002 07:13:05 +0000 |
parents | 0c12245b7bdc |
children | df43967d6a46 |
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 \ | |
6 boot_rom | |
7 BOOTERS_L1 = boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_ide_l1 \ | |
8 boot_rom_l1 | |
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 | |
23 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=0 | |
24 | |
68 | 25 boot_kenton: boot_scsi.asm |
26 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 -aTC3=0 | |
65 | 27 |
28 boot_rampak: boot_rampak.asm | |
29 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
30 | |
68 | 31 boot_tc3: boot_scsi.asm |
69 | 32 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=0 -aTC3=1 |
65 | 33 |
34 boot_wd1002: boot_wd1002.asm | |
35 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
36 | |
37 boot_rom: boot_rom.asm | |
38 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
39 | |
279 | 40 # OS-9 Level One Booters |
65 | 41 boot_rom_l1: boot_rom_l1.asm |
42 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
43 | |
68 | 44 boot_kenton_l1: boot_scsi.asm |
45 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0 | |
65 | 46 |
68 | 47 boot_tc3_l1: boot_scsi.asm |
48 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0 | |
65 | 49 |
279 | 50 boot_rampak_l1: boot_rampak.asm |
51 $(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
|
52 |
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
53 boot_ide_l1: boot_ide.asm |
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
54 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aNitrOS9=0 |
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
55 |