Mercurial > hg > Members > kono > nitros9-code
diff 3rdparty/booters/makefile @ 65:747a7379ae50
Consolidated boot modules for Level One and Level Two
author | boisy |
---|---|
date | Wed, 01 May 2002 03:24:34 +0000 |
parents | 4fd75b62ccb1 |
children | 8ffca4533723 |
line wrap: on
line diff
--- a/3rdparty/booters/makefile Wed May 01 03:12:16 2002 +0000 +++ b/3rdparty/booters/makefile Wed May 01 03:24:34 2002 +0000 @@ -1,8 +1,8 @@ include ../../Makefile.rules DEPENDS = ./Makefile -BOOTERS = boot_kenton boot_rampak boot_ide boot_tc3 boot_wd1002 \ - boot_rom boot_rom_l1 +BOOTERS = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \ + boot_rom boot_rom_l1 boot_tc3_l1 boot_kenton_l1 ALLOBJS = $(BOOTERS) all: $(ALLOBJS) $(DEPENDS) @@ -10,3 +10,34 @@ clean: $(RM) $(ALLOBJS) + +boot_kenton: boot_kenton.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_rampak: boot_rampak.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_tc3: boot_tc3.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_ide: boot_ide.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_wd1002: boot_wd1002.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_rom: boot_rom.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 + +boot_rom_l1: boot_rom_l1.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 + +boot_kenton_l1: boot_kenton.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 + +boot_tc3_l1: boot_tc3.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 + +boot_tc3_l2: boot_tc3.asm + $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 +