home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlx501.zip / SRC / BC / MAKEOS2.CMD < prev    next >
OS/2 REXX Batch file  |  1995-03-07  |  610b  |  20 lines

  1. @echo off
  2. cls
  3. echo This file will build all OS/2 versions of TLX 5.0 using the Borland C++
  4. echo compiler for OS/2 and the MAKEFILE.
  5. echo.
  6. echo Output from the compiler is redirected to one of several .LOG files.
  7. echo.
  8. echo Building may take a while, so please be patient. To interrupt the
  9. echo building process, press Ctrl-Break.
  10. echo.
  11. pause
  12. echo.
  13. echo Building version without debug information...
  14. MAKE -DOS2 %1 %2 %3 > tlx2.log
  15. echo Building version with debug information...
  16. MAKE -DOS2 -DEBUG %1 %2 %3 > tlx2d.log
  17. echo.
  18. echo Done. Compiler output can be found in *.LOG files.
  19. dir tlx2*.*
  20.