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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
1 include ../../Makefile.rules
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
2
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
3 DEPENDS = ./Makefile
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
4 BOOTERS_NITROS = boot_ide_nl2
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
5 BOOTERS_L2 = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
6 boot_burke boot_rom
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
7 BOOTERS_L1 = boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_ide_l1 \
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
8 boot_burke_l1 boot_rom_l1
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
9 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1)
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
10
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
11 all: $(ALLOBJS) $(DEPENDS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
12
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
13 clean:
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
14 $(RM) $(ALLOBJS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
15
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
16
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
17 # NitrOS-9 Booters
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
18 boot_ide_nl2: boot_ide.asm
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
19 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
20
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
21 # OS-9 Level Two Booters
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
22 boot_ide: boot_ide.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
23 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
24
68
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
25 boot_kenton: boot_scsi.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
26 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
27
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
28 boot_rampak: boot_rampak.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
29 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
30
68
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
31 boot_tc3: boot_scsi.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
32 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
33
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
34 boot_wd1002: boot_wd1002.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
35 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
36
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
37 boot_burke: boot_burke.asm
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
38 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
39
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
40 boot_rom: boot_rom.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
41 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
42
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
43 # OS-9 Level One Booters
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
44 boot_rom_l1: boot_rom_l1.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
45 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
46
68
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
47 boot_kenton_l1: boot_scsi.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
48 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
49
68
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
50 boot_tc3_l1: boot_scsi.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
51 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
52
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
53 boot_rampak_l1: boot_rampak.asm
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
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
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
56 boot_burke_l1: boot_burke.asm
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
57 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
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
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
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