; this is a little script which will compile the M2-Interface and copy
; the stuff to m2:modules
; it will use your compiler-options as they are set in your environment
; variable m2c
;
; This was written on the fly by Christian Scholz on 26.10.1993
;

; first compile the interface

echo "Compiling the interface..."

m2make -x-d-q MuiMacros

; now copy the stuff to m2:modules

echo "copying the interface to m2:modules..."

copy sym/#?.sym to m2:modules/sym
copy obj/#?.obj to m2:modules/obj

echo "finished!"

; Terminate!


