home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / VTREK.ZIP / VTCOMP.BAT < prev    next >
DOS Batch File  |  1989-12-26  |  392b  |  13 lines

  1. @rem Use this batch file if you don't have MAKE.  It compiles VTREK.EXE
  2. @rem for MSDOS alone (not OS/2) using the Hi-Tech C compiler.
  3. c -o -v -c main.c
  4. c -o -c -v hiscore.c
  5. c -o -c -v plot.c
  6. c -o -v -c sub1.c
  7. c -o -v -c sub2.c
  8. c -o -v -c termio.c
  9. c -v -c vtglob.c
  10. c -n main.obj sub1.obj sub2.obj termio.obj hiscore.obj plot.obj vtglob.obj -lf
  11. del vtrek.exe
  12. ren main.exe vtrek.exe
  13.