view 3rdparty/drivers/flashpak/makefile @ 2115:9e49b536525f

Fixed the "crash" bug in the case where CoWin/CoGrf could not load or link grfdrv. This is now fixed.
author boisy
date Wed, 22 Aug 2007 19:15:59 +0000
parents 53c50c807d55
children
line wrap: on
line source

include ../../../rules.mak

L1 = $(AFLAGS) -aLevel=1
L2 = $(AFLAGS) -aLevel=2

DEPENDS		= ./makefile
DRVRS		= flashpak.dr
DESCS           = f0_l1.dd f0_l2.dd
ALLOBJS		= $(DRVRS) $(DESCS)

all:	$(ALLOBJS) $(DEPENDS)

f0_l1.dd: f0.asm
	$(AS) $(ASOUT)$@ $< $(L1)

f0_l2.dd: f0.asm
	$(AS) $(ASOUT)$@ $< $(L2)

clean:
	$(RM) $(ALLOBJS)