Mercurial > hg > Members > kono > nitros9-code
view 3rdparty/booters/makefile @ 3150:37737e5ec640
Add coco3fpga RAM disk and RTC driver
Added clock2_coco3fpga.as to level1/modules.
Added ramd_coco3fpga.asm & r0_ramd_coco3fpga.asm to level2/modules.
Build them on level2/coco3.
Added definitions to "coco3/modules/makefile" to build
'ramd_coco3fpga.dr", "r0_ramd_cocofga.dd" & "clock2_coco3fpga".
author | Bill Pierce <merlinious999@gmail.com> |
---|---|
date | Mon, 06 Feb 2017 22:25:15 +0100 |
parents | 9edca3e61b66 |
children |
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) dsk: dskcopy: # OS-9 Level Two Booters boot_ktlr_id0: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=1 boot_ktlr_id5: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DKTLR=1 -Dscsiid=32 boot_tc3_id0: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=1 boot_tc3_id5: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 -DTC3=1 -Dscsiid=32 boot_vhd: boot_vhd.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 boot_mmc_l2: boot_mmc.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=2 # OS-9 Level One Booters boot_ktlr_id0_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=1 boot_ktlr_id5_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DKTLR=1 -Dscsiid=32 boot_tc3_id0_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=1 boot_tc3_id5_l1: boot_scsi.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1 -DTC3=1 -Dscsiid=32 boot_mmc_l1: boot_mmc.asm $(AS) $(AFLAGS) $(ASOUT)$@ $< -DLevel=1