Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/booters/makefile @ 1834:87865128c951
Added defines for bit 2 of IT.DNS, which is track 0 density flag for format
author | afra |
---|---|
date | Tue, 31 May 2005 15:19:07 +0000 |
parents | 53c50c807d55 |
children | 53c42701f680 e4a0f58a5f9b |
rev | line source |
---|---|
1363 | 1 include ../../rules.mak |
45 | 2 |
1363 | 3 DEPENDS = ./makefile |
1238 | 4 BOOTERS_L2 = boot_vhd boot_mmc_l2 |
5 BOOTERS_L1 = boot_mmc_l1 | |
1184 | 6 ALLOBJS = $(BOOTERS_L2) $(BOOTERS_L1) |
45 | 7 |
8 all: $(ALLOBJS) $(DEPENDS) | |
9 | |
10 clean: | |
11 $(RM) $(ALLOBJS) | |
12 | |
65 | 13 |
279 | 14 # OS-9 Level Two Booters |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
15 boot_ktlr_id0: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
16 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=1 |
65 | 17 |
461 | 18 boot_ktlr_id5: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
19 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=32 |
407 | 20 |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
21 boot_tc3_id0: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
22 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=1 |
65 | 23 |
406
3362a5cd8259
Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents:
392
diff
changeset
|
24 boot_tc3_id5: boot_scsi.asm |
408 | 25 $(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
|
26 |
553 | 27 boot_vhd: boot_vhd.asm |
28 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 | |
29 | |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
30 boot_mmc_l2: boot_mmc.asm |
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
31 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 |
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
32 |
279 | 33 # OS-9 Level One Booters |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
34 boot_ktlr_id0_l1: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
35 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=1 |
65 | 36 |
461 | 37 boot_ktlr_id5_l1: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
38 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=32 |
407 | 39 |
657
d2ce1c213a9c
Changed boot_ktlr and boot_tc3 to add id0 for SCSI ID
boisy
parents:
553
diff
changeset
|
40 boot_tc3_id0_l1: boot_scsi.asm |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
41 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=1 |
65 | 42 |
406
3362a5cd8259
Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
boisy
parents:
392
diff
changeset
|
43 boot_tc3_id5_l1: boot_scsi.asm |
408 | 44 $(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
|
45 |
1168
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
46 boot_mmc_l1: boot_mmc.asm |
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
47 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 |
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
48 |
3be7fce1a56b
Added Jim Hathaway's MMC booter, made other source changes
boisy
parents:
657
diff
changeset
|
49 |