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
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 \
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
6 boot_rom
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 \
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
8 boot_rom_l1
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
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
23 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=0
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
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
26 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 -aTC3=0
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
69
efb0d7b57679 Removed temporary -l
boisy
parents: 68
diff changeset
32 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=0 -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
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
37 boot_rom: boot_rom.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
38 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
39
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
40 # OS-9 Level One Booters
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
41 boot_rom_l1: boot_rom_l1.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
42 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
43
68
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
44 boot_kenton_l1: boot_scsi.asm
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
45 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
65
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_tc3_l1: boot_scsi.asm
8ffca4533723 Merged boot_kenton and boot_tc3 into boot_scsi
boisy
parents: 65
diff changeset
48 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
49
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
50 boot_rampak_l1: boot_rampak.asm
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
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