home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / gui / mui / mui14-dv.lha / MUI / Developer / Modula / CompilerScript next >
Encoding:
Text File  |  1993-10-27  |  529 b   |  27 lines

  1. ; this is a little script which will compile the M2-Interface and copy
  2. ; the stuff to m2:modules
  3. ; it will use your compiler-options as they are set in your environment
  4. ; variable m2c
  5. ;
  6. ; This was written on the fly by Christian Scholz on 26.10.1993
  7. ;
  8.  
  9. ; first compile the interface
  10.  
  11. echo "Compiling the interface..."
  12.  
  13. m2make -x-d-q MuiMacros
  14.  
  15. ; now copy the stuff to m2:modules
  16.  
  17. echo "copying the interface to m2:modules..."
  18.  
  19. copy sym/#?.sym to m2:modules/sym
  20. copy obj/#?.obj to m2:modules/obj
  21.  
  22. echo "finished!"
  23.  
  24. ; Terminate!
  25.  
  26.  
  27.