home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 4
/
MegaHits_Vol.4.iso
/
mui
/
dev
/
gui
/
m2mui2_0.lha
/
CompilerScript
next >
Wrap
Text File
|
1994-02-02
|
590b
|
29 lines
; 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
; updated 4.2.94 for MuiClasses.def
;
; first compile the interface
echo "Compiling the interface..."
m2make -x-d-q MuiMacros
m2make -x-d-q MuiClasses
; 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!