home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 5
/
amigaformatcd05.iso
/
mui
/
developer
/
modula
/
compilerscript
next >
Wrap
Text File
|
1996-08-13
|
606b
|
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 -c+oMUIObsolete 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!