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

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

all: simple_fara.out

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

	
simple.obj: simple.s
	cl6x $(AOPTS_BE) simple.s


