annotate 3rdparty/booters/makefile @ 1180:78b0a9ad8d7b

More descriptors are now made
author boisy
date Sun, 25 May 2003 15:53:19 +0000
parents 36deea38aabb
children 37c9e0e58367
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
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
5 BOOTERS_L2 = boot_ktlr_id0 boot_ktlr_id5 boot_rampak \
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
6 boot_tc3_id0 boot_tc3_id5 boot_ide boot_wd1002 \
1175
36deea38aabb boot_rom removed
boisy
parents: 1168
diff changeset
7 boot_burke boot_vhd boot_mmc_l2
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
8 BOOTERS_L1 = boot_ktlr_id0_l1 boot_ktlr_id5_l1 boot_rampak_l1 \
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
9 boot_tc3_id0_l1 boot_tc3_id5_l1 boot_ide_l1 \
1175
36deea38aabb boot_rom removed
boisy
parents: 1168
diff changeset
10 boot_burke_l1 boot_mmc_l1
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
11 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1)
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
12
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
13 all: $(ALLOBJS) $(DEPENDS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
14
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
15 clean:
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
16 $(RM) $(ALLOBJS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
17
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
18
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
19 # NitrOS-9 Booters
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
20 boot_ide_nl2: boot_ide.asm
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
22
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
23 # OS-9 Level Two Booters
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
24 boot_ide: boot_ide.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
25 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
26
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
27 boot_ktlr_id0: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
28 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
29
461
75f0c7261a96 *** empty log message ***
boisy
parents: 408
diff changeset
30 boot_ktlr_id5: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
31 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=32
407
d3b592db8f59 Added Kenton SCSI ID 5 target for ZIP drives
boisy
parents: 406
diff changeset
32
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
33 boot_rampak: boot_rampak.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
34 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
35
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
36 boot_tc3_id0: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
37 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
38
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
39 boot_tc3_id5: boot_scsi.asm
408
8de0ac44cbbd Mistakenly set scsiid to 64 for ID 5, should be 32
boisy
parents: 407
diff changeset
40 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=32
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
41
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
42 boot_wd1002: boot_wd1002.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
43 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
44
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
45 boot_burke: boot_burke.asm
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
46 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
47
553
b93501797906 Added boot_vhd.asm from Robert Gault
boisy
parents: 461
diff changeset
48 boot_vhd: boot_vhd.asm
b93501797906 Added boot_vhd.asm from Robert Gault
boisy
parents: 461
diff changeset
49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
b93501797906 Added boot_vhd.asm from Robert Gault
boisy
parents: 461
diff changeset
50
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
51 boot_mmc_l2: boot_mmc.asm
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
52 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
53
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
54 # OS-9 Level One Booters
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
55 boot_ktlr_id0_l1: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
56 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
57
461
75f0c7261a96 *** empty log message ***
boisy
parents: 408
diff changeset
58 boot_ktlr_id5_l1: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
59 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=32
407
d3b592db8f59 Added Kenton SCSI ID 5 target for ZIP drives
boisy
parents: 406
diff changeset
60
657
d2ce1c213a9c Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents: 553
diff changeset
61 boot_tc3_id0_l1: boot_scsi.asm
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
62 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=1
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
63
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
64 boot_tc3_id5_l1: boot_scsi.asm
408
8de0ac44cbbd Mistakenly set scsiid to 64 for ID 5, should be 32
boisy
parents: 407
diff changeset
65 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=32
406
3362a5cd8259 Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents: 392
diff changeset
66
279
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
67 boot_rampak_l1: boot_rampak.asm
20e8c354b914 Added support for Level One Rampak Boot
boisy
parents: 93
diff changeset
68 $(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
69
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
70 boot_burke_l1: boot_burke.asm
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
71 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
72
93
0c12245b7bdc Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents: 69
diff changeset
73 boot_ide_l1: boot_ide.asm
392
df43967d6a46 Minor source changes, added boot_burke
boisy
parents: 279
diff changeset
74 $(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
75
1168
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
76 boot_mmc_l1: boot_mmc.asm
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
77 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
78
3be7fce1a56b Added Jim Hathaway's MMC booter, made other source changes
boisy
parents: 657
diff changeset
79