home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / menuc.lzh / MENUC / S / MCLASM < prev    next >
Encoding:
AmigaDOS Script File  |  1991-08-15  |  352 b   |  19 lines

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