home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / GNUNARJ.ZIP / CC.CMD next >
OS/2 REXX Batch file  |  1992-05-31  |  216b  |  7 lines

  1. @echo off
  2. if exist %1.obj goto exit
  3. cpp<%1.c |cc1 -O2 -finline-functions -finline -fcaller-saves -funroll-loops -fomit-frame-pointer -fthread-jumps -fforce-addr |as -o %1.o
  4. o2obj -o %1.obj %1.o
  5. del %1.o
  6. :exit
  7.