Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/booters/makefile @ 727:72443b44537e
Debug is part of the manual now.
Template added for 'asm'
author | roug |
---|---|
date | Sun, 05 Jan 2003 11:17:50 +0000 |
parents | d2ce1c213a9c |
children | 3be7fce1a56b |
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 \ |
553 | 7 boot_burke boot_rom boot_vhd |
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 \ |
392 | 10 boot_burke_l1 boot_rom_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 |
392 | 28 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 |
65 | 29 |
461 | 30 boot_ktlr_id5: boot_scsi.asm |
408 | 31 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=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 |
392 | 37 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=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 | |
65 | 48 boot_rom: boot_rom.asm |
49 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
50 | |
553 | 51 boot_vhd: boot_vhd.asm |
52 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
53 | |
279 | 54 # OS-9 Level One Booters |
65 | 55 boot_rom_l1: boot_rom_l1.asm |
56 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
57 | |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
58 boot_ktlr_id0_l1: boot_scsi.asm |
392 | 59 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 |
65 | 60 |
461 | 61 boot_ktlr_id5_l1: boot_scsi.asm |
408 | 62 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -ascsiid=32 |
407 | 63 |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
64 boot_tc3_id0_l1: boot_scsi.asm |
392 | 65 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 |
65 | 66 |
406
3362a5cd8259
Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents:
392
diff
changeset
|
67 boot_tc3_id5_l1: boot_scsi.asm |
408 | 68 $(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
|
69 |
279 | 70 boot_rampak_l1: boot_rampak.asm |
71 $(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
|
72 |
392 | 73 boot_burke_l1: boot_burke.asm |
74 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 | |
75 | |
93
0c12245b7bdc
Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the
boisy
parents:
69
diff
changeset
|
76 boot_ide_l1: boot_ide.asm |
392 | 77 $(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
|
78 |