home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cwt1.zip / COMPILE.TBC < prev    next >
Text File  |  1989-10-03  |  384b  |  10 lines

  1. REM parameter is program name to be compiled, linked and run
  2. REM format of entry is "COMPILE program"
  3. REM Note that the ".c" suffix is omitted
  4. if NOT EXIST marietta\%1.c GOTO END
  5. copy marietta\%1.c program.c
  6. tcc -C -Iinclude -Llib -mm program lib\mc_wndw.lib lib\mc_ndx.lib | more
  7. PAUSE examine compile for errors, then press any key
  8. program
  9. :END
  10.