###############################################################################
#
#		makefile for UltraSound example code
#
###############################################################################
INCS=..\incs
MODEL=l
#DEBUG = -v
UTIL=..\utility

#            Transformation rules

.c.obj:
	bcc $(DEBUG) -k- -Z -c -O -j12 -I$(INCS) -m$(MODEL) $<

.asm.obj:
	bcc $(DEBUG) -k- -Z -c -O -j7 -B -m$(MODEL) $<


###############################################################################
#
#		 Object files needed to create GF1 dagnostic
#
###############################################################################

all: example.exe

example.exe: example.obj
	tlink $(DEBUG) c0$(MODEL).obj example ,example.exe,,ultra0$(MODEL)b+ultra1$(MODEL)b+$(UTIL)\util$(MODEL)b+c$(MODEL)

