home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / dev / misc / p2c / gcc / pcompile.gcc < prev    next >
AmigaDOS Script File  |  1993-12-21  |  313b  |  25 lines

  1. .key source/a,dest/a
  2. .bra {
  3. .ket }
  4.  
  5. FailAt 21
  6.  
  7. P2C {source} -a -o t:P2Ctmpfile.c
  8.  
  9. IF ERROR
  10.  
  11.   QUIT 20
  12.  
  13. ENDIF
  14.  
  15. ;insert the compiler options you want
  16. gcc -O2 t:P2Ctmpfile.c -lp2c -o {dest}
  17.  
  18. IF ERROR
  19.   delete >NIL: t:P2Ctmpfile.c
  20.   echo "Fatal error: could not compile."
  21.   QUIT 20
  22. ENDIF
  23.  
  24. delete >NIL: t:P2Ctmpfile.c
  25.