diff 3rdparty/booters/makefile @ 392:df43967d6a46

Minor source changes, added boot_burke
author boisy
date Sun, 25 Aug 2002 19:36:23 +0000
parents 20e8c354b914
children 3362a5cd8259
line wrap: on
line diff
--- a/3rdparty/booters/makefile	Sun Aug 25 19:22:49 2002 +0000
+++ b/3rdparty/booters/makefile	Sun Aug 25 19:36:23 2002 +0000
@@ -3,9 +3,9 @@
 DEPENDS		= ./Makefile
 BOOTERS_NITROS	= boot_ide_nl2
 BOOTERS_L2	= boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \
-		boot_rom
+		boot_burke boot_rom
 BOOTERS_L1	= boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_ide_l1 \
-		boot_rom_l1
+		boot_burke_l1 boot_rom_l1
 ALLOBJS		= $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1)
 
 all:	$(ALLOBJS) $(DEPENDS)
@@ -20,20 +20,23 @@
 
 # OS-9 Level Two Booters
 boot_ide: boot_ide.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=0
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
 
 boot_kenton: boot_scsi.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 -aTC3=0
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1
 
 boot_rampak: boot_rampak.asm
 	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
 
 boot_tc3: boot_scsi.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=0 -aTC3=1
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1
 
 boot_wd1002: boot_wd1002.asm
 	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
 
+boot_burke: boot_burke.asm
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
+
 boot_rom: boot_rom.asm
 	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
 
@@ -42,14 +45,17 @@
 	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
 
 boot_kenton_l1: boot_scsi.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1
 
 boot_tc3_l1: boot_scsi.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1
 
 boot_rampak_l1: boot_rampak.asm
 	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
 
+boot_burke_l1: boot_burke.asm
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
+
 boot_ide_l1: boot_ide.asm
-	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aNitrOS9=0
+	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1