Mercurial > hg > Members > kono > nitros9-code
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 |
rev | line source |
---|---|
45 | 1 include ../../Makefile.rules |
2 | |
3 DEPENDS = ./Makefile | |
279 | 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 | 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 | 10 boot_burke_l1 boot_mmc_l1 |
279 | 11 ALLOBJS = $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1) |
45 | 12 |
13 all: $(ALLOBJS) $(DEPENDS) | |
14 | |
15 clean: | |
16 $(RM) $(ALLOBJS) | |
17 | |
65 | 18 |
279 | 19 # NitrOS-9 Booters |
20 boot_ide_nl2: boot_ide.asm | |
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1 | |
22 | |
23 # OS-9 Level Two Booters | |
24 boot_ide: boot_ide.asm | |
392 | 25 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
279 | 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 | 29 |
461 | 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 | 32 |
65 | 33 boot_rampak: boot_rampak.asm |
34 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
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 | 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 | 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 | 42 boot_wd1002: boot_wd1002.asm |
43 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
44 | |
392 | 45 boot_burke: boot_burke.asm |
46 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
47 | |
553 | 48 boot_vhd: boot_vhd.asm |
49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
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 | 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 | 57 |
461 | 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 | 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 | 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 | 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 | 67 boot_rampak_l1: boot_rampak.asm |
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 | 70 boot_burke_l1: boot_burke.asm |
71 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
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 | 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 |