home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlx501.zip / SRC / BC / MAKEWIN.BAT < prev    next >
DOS Batch File  |  1995-03-07  |  1KB  |  33 lines

  1. @echo off
  2. cls
  3. echo This file will build all Windows versions of TLX 5.0
  4. echo using the Borland C++ compiler 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. del *.log > nul
  14. echo Building SMALL version without debug information...
  15. MAKE -DWIN -DM=s > tlxws.log
  16. echo Building SMALL version with debug information...
  17. MAKE -DWIN -DM=s -DEBUG > tlxwsd.log
  18. echo Building MEDIUM version without debug information...
  19. MAKE -DWIN -DM=m > tlxwm.log
  20. echo Building MEDIUM version with debug information...
  21. MAKE -DWIN -DM=m -DEBUG > tlxwmd.log
  22. echo Building COMPACT version without debug information...
  23. MAKE -DWIN -DM=c > tlxwc.log
  24. echo Building COMPACT version with debug information...
  25. MAKE -DWIN -DM=c -DEBUG > tlxwcd.log
  26. echo Building LARGE version without debug information...
  27. MAKE -DWIN -DM=l > tlxwl.log
  28. echo Building LARGE version with debug information...
  29. MAKE -DWIN -DM=l -DEBUG > tlxwld.log
  30. echo.
  31. echo Done. Compiler output can be found in *.LOG files.
  32. dir tlxw*.*
  33.