.key infile/a,test/s
if exists "<infile>.men"
	MenuC <infile>.men <infile>.a ASM <test>
else 
	echo "MCAsm: File <infile>.men was not found*N"
	quit 20
endif

; modify here for your specific assembler
; below for A68k

A68k -iinclude: <infile>.a 
;; A68k -iinclude: -q <infile>.a  ;for quiet operation

if "<test>" not eq ""
	Blink <infile>.o lib lib:small.lib
	<infile>		; run the test program
endif

