view 3rdparty/booters/makefile @ 406:3362a5cd8259

Added SCSI ID 5 boot modules for TC^3 (for ZIP drives)
author boisy
date Wed, 04 Sep 2002 14:01:09 +0000
parents df43967d6a46
children d3b592db8f59
line wrap: on
line source

include ../../Makefile.rules

DEPENDS		= ./Makefile
BOOTERS_NITROS	= boot_ide_nl2
BOOTERS_L2	= boot_kenton boot_rampak boot_tc3 boot_tc3_id5 boot_ide boot_wd1002 \
		boot_burke boot_rom
BOOTERS_L1	= boot_kenton_l1 boot_rampak_l1 boot_tc3_l1 boot_tc3_id5_l1 boot_ide_l1 \
		boot_burke_l1 boot_rom_l1
ALLOBJS		= $(BOOTERS_NITROS) $(BOOTERS_L2) $(BOOTERS_L1)

all:	$(ALLOBJS) $(DEPENDS)

clean:
	$(RM) $(ALLOBJS)


# NitrOS-9 Booters
boot_ide_nl2: boot_ide.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aNitrOS9=1

# OS-9 Level Two Booters
boot_ide: boot_ide.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2

boot_kenton: boot_scsi.asm
	$(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 -aTC3=1

boot_tc3_id5: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aTC3=1 -ascsiid=64

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

# OS-9 Level One Booters
boot_rom_l1: boot_rom_l1.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1

boot_kenton_l1: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1

boot_tc3_l1: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1

boot_tc3_id5_l1: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aTC3=1 -ascsiid=64

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