view level2/modules/makefile @ 100:5679e0d70acf

Added identify target
author boisy
date Sat, 06 Jul 2002 05:02:57 +0000
parents 60432af73b7e
children 20944721d3e6
line wrap: on
line source

include ../../Makefile.rules

DEPENDS		= ./Makefile
TPB		= ../../3rdparty/booters

BOOTERS		= boot_1773
KERNELS		= os9p1 os9p2
SYSMODS		= rel rominfo rom_vectors ioman init pakrom
CLOCKS		= clock clock2_soft clock2_disto clock2_146818
FMGRS		= scf.mn rbf.mn pipeman.mn pipeman_named.mn
DRIVERS		= cc3disk.dr cc3hdisk.dr cc3io.dr modpak.dr \
		vrn.dr piper.dr printer.dr parallel.dr sio.dr ram.dr sspak.dr \
		hdisk.dr sacia.dr dacia.dr
IOSUBS		= windint.io vdgint.io keydrv joydrv_joy \
		joydrv_6551L joydrv_6552L joydrv_6551M joydrv_6552M snddrv
DESCS		= d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \
		d0_40d.dd d1_40d.dd d2_40d.dd d0_80d.dd \
		d1_80d.dd d2_80d.dd ddd0_35s.dd ddd0_40d.dd \
		ddd0_80d.dd r0_8k.dd r0_96k.dd r0_128k.dd r0_192k.dd \
		ddr0_8k.dd ddr0_96k.dd ddr0_128k.dd ddr0_192k.dd \
		m1.dd m2.dd nil.dd p.dd pp.dd pipe.dd t1.dd t2_sacia.dd \
		t3_sacia.dd t2_dacia.dd t3_dacia.dd \
		h0_10.dd h1_10.dd h0_15.dd h1_15.dd h0_35.dd h1_35.dd \
		ftdd.dd vi.dd ssp.dd h0_hdisk.dd term_t1.dd
WINDESCS	= term_vdg.dt term_win40.dt term_win80.dt w.dw w1.dw w2.dw \
		w3.dw w4.dw w5.dw w6.dw w7.dw v1.dw v2.dw v3.dw v4.dw v5.dw \
		v6.dw v7.dw
SYSGOS		= cc3go cc3go_rom

#
# The following macros represent a collection of modules for various
# kernel tracks and bootfile configurations.
#
KERNEL_1773	= rel boot_1773 os9p1
KERNEL_RAMPAK	= rel $(TPB)/boot_rampak os9p1
KERNEL_KENTON	= rel $(TPB)/boot_kenton os9p1
KERNEL_ROM	= rel $(TPB)/boot_rom os9p1
KERNEL_IDE	= rel $(TPB)/boot_ide os9p1
# These kernels are intended to be ROMmed in a disk controller or program pak
KERNEL_PAK_KENTON	= pakrom $(KERNEL_KENTON)

ALLOBJS		= $(BOOTERS) $(KERNELS) $(SYSMODS) $(CLOCKS) $(FMGRS) \
		$(DRIVERS) $(IOSUBS) $(DESCS) $(WINDESCS) $(SYSGOS) \
		kernel_1773 kernel_rom kernel_kenton kernel_pak_kenton \
		kernel_rampak kernel_ide

all:	$(ALLOBJS)

# Special cases here
sacia.dr: xacia.asm
	$(AS) -aA6551=1 -aA6552=0 -aMPI.Slot=00 $(AFLAGS) $< $(ASOUT)$@
	
dacia.dr: xacia.asm
	$(AS) -aA6551=0 -aA6552=1 -aMPI.Slot=00 $(AFLAGS) $< $(ASOUT)$@



kernel_1773: $(KERNEL_1773) $(DEPENDS)
	$(MERGE) $(KERNEL_1773)>$@

kernel_rampak: $(KERNEL_RAMPAK) $(DEPENDS)
	$(MERGE) $(KERNEL_RAMPAK)>$@

kernel_rom: $(KERNEL_ROM) $(DEPENDS)
	$(MERGE) $(KERNEL_ROM)>$@

kernel_kenton: $(KERNEL_KENTON) $(DEPENDS)
	$(MERGE) $(KERNEL_KENTON)>$@

kernel_ide: $(KERNEL_IDE) $(DEPENDS)
	$(MERGE) $(KERNEL_IDE)>$@

kernel_pak_kenton: $(KERNEL_PAK_KENTON) $(DEPENDS)
	$(MERGE) $(KERNEL_PAK_KENTON)>$@
	$(PADROM) \$$2000 $@ -c=\$$FF

rominfo: rominfo.asm
	$(AS) -aROMPak=0 $(AFLAGS) $< $(ASOUT)$@

clean:
	$(RM) $(ALLOBJS)

identify:
	$(IDENT_SHORT) $(ALLOBJS)