home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR2 / CACODE.ZIP / COMPILE.BAT < prev    next >
DOS Batch File  |  1993-07-14  |  887b  |  28 lines

  1. @echo off
  2.  
  3. REM This line compiles the .C source (MS C version 5.0 or higher required)
  4. REM Uncomment them if you have a c compiler and want to make mods
  5. CL /c /AL /FPa /Gs /Oalt /Zl int2b.c
  6. CL /c /AL /FPa /Gs /Oalt /Zl b2int.c
  7. CL /c /AL /FPa /Gs /Oalt /Zl bytesout.c
  8.  
  9. REM This line compiles the Clipper source
  10. clipper CAENCODE -m -w -n
  11. clipper CADECODE -m -w -n
  12.  
  13. REM *--- Blinker Scripts (/q for no incremental link - remove if desired) ---*
  14. BLINKER @CAENCODE.LNK /q
  15. BLINKER @CADECODE.LNK /q
  16.  
  17. REM *-- If you are using rtlink, use these lines instead ---*
  18. REM RTLINK /free @CAENCODE.LNK
  19. REM RTLINK /free @CADECODE.LNK
  20.  
  21. REM *--- Comment these lines out if you do not have PKLITE, by PKWARE. ---*
  22. REM It is available on just about any BBS you call, and works fine
  23. REM with the programs as compiled by this compile script.
  24.  
  25. PKLITE CAENCODE.EXE
  26. PKLITE CADECODE.EXE
  27.  
  28.