home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / programming / menuc / s / mcasm < prev    next >
AmigaDOS Script File  |  1991-01-17  |  402b  |  20 lines

  1. .key infile/a,test/s
  2. if exists "<infile>.men"
  3.     MenuC <infile>.men <infile>.a ASM <test>
  4. else 
  5.     echo "MCAsm: File <infile>.men was not found*N"
  6.     quit 20
  7. endif
  8.  
  9. ; modify here for your specific assembler
  10. ; below for A68k
  11.  
  12. A68k -iinclude: <infile>.a 
  13. ;; A68k -iinclude: -q <infile>.a  ;for quiet operation
  14.  
  15. if "<test>" not eq ""
  16.     Blink <infile>.o lib lib:small.lib
  17.     <infile>        ; run the test program
  18. endif
  19.  
  20.