#**************************************************************************
#* FILE PURPOSE: Build the LedBlink test program
#**************************************************************************
#* FILE NAME: makefile
#*
#* DESCRIPTION: Builds the following:
#*
#*              LedBlink.out    - little endian himalaya mapped program
#*              
#***************************************************************************

AOPTS_LE= -g -c -k -mi200 -ml3 -pm -mv6400+
AOPTS_BE= -me $(AOPTS_LE)

all: LedBlink.out

LedBlink.out: LedBlink.obj LedBlink.cmd
	cl6x -z -el.cmd LedBlink.cmd -o LedBlink.out -m LedBlink.map

	
LedBlink.obj: LedBlink.s
	cl6x $(AOPTS_LE) LedBlink.s


