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

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

all: simple.out

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

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


