view 3rdparty/subrtns/makefile @ 2669:53c42701f680 lwtools-port

More parameter fixups for lwasm
author William Astle <lost@l-w.ca>
date Sun, 10 Jun 2012 14:24:04 -0600
parents 174d263c0995
children 28ed72477814
line wrap: on
line source

include ../../rules.mak

DEPENDS		= ./makefile

CMDS		= cpu hires_l1 hires_l2 joystk

ALLOBJS		= $(CMDS)

all:	banner $(ALLOBJS) $(DEPENDS)
 
banner:
	@$(ECHO) "**************************************************"
	@$(ECHO) "*                                                *"
	@$(ECHO) "*          3rd Party Subroutine Modules          *"
	@$(ECHO) "*                                                *"
	@$(ECHO) "**************************************************"

hires_l1: hires.asm
	$(AS) $(ASOUT)$@ $< $(AFLAGS) -DLevel=1

hires_l2: hires.asm
	$(AS) $(ASOUT)$@ $< $(AFLAGS) -DLevel=2

clean:
	$(RM) $(ALLOBJS)