view 3rdparty/booters/makefile @ 2660:adb21dec5e10

Another commit to update makefiles
author Boisy Pitre <boisy.pitre@nuance.com>
date Fri, 13 Jul 2012 13:27:33 -0500
parents 53c50c807d55
children 53c42701f680 e4a0f58a5f9b
line wrap: on
line source

include ../../rules.mak

DEPENDS		= ./makefile
BOOTERS_L2	= boot_vhd boot_mmc_l2
BOOTERS_L1	= boot_mmc_l1
ALLOBJS		= $(BOOTERS_L2) $(BOOTERS_L1)

all:	$(ALLOBJS) $(DEPENDS)

clean:
	$(RM) $(ALLOBJS)


# OS-9 Level Two Booters
boot_ktlr_id0: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=1

boot_ktlr_id5: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKTLR=1 -ascsiid=32

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

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

boot_vhd: boot_vhd.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2

boot_mmc_l2: boot_mmc.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2

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

boot_ktlr_id5_l1: boot_scsi.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKTLR=1 -ascsiid=32

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

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

boot_mmc_l1: boot_mmc.asm
	$(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1