home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / krcls012.zip / KrClass / Install.cmd < prev    next >
OS/2 REXX Batch file  |  1997-02-25  |  977b  |  51 lines

  1. @echo off
  2. echo.
  3. echo Installing Kroni's Classes; this will take a few minutes...
  4. echo.
  5. cd source
  6. echo.
  7. echo Creating standard library...
  8. echo.
  9. nmake /NOLOGO scratch=1 KrClass.mak
  10. del tempinc\*.cpp
  11. rd tempinc
  12. del *.obj
  13. echo.
  14. echo Creating debug library...
  15. echo.
  16. nmake /NOLOGO scratch=1 debug=1 KrClass.mak
  17. del tempinc\*.cpp
  18. rd tempinc
  19. del *.obj
  20. echo.
  21. echo Creating static library...
  22. echo.
  23. nmake /NOLOGO scratch=1 static=1 KrClass.mak
  24. del tempinc\*.cpp
  25. rd tempinc
  26. del *.obj
  27. echo.
  28. echo Creating static debug library...
  29. echo.
  30. nmake /NOLOGO scratch=1 debug=1 static=1 KrClass.mak
  31. del tempinc\*.cpp
  32. rd tempinc
  33. del *.obj
  34. cd ..\lib
  35. del *.bak
  36. cd ..\demo
  37. echo.
  38. echo Creating demo programs...
  39. echo.
  40. nmake /NOLOGO demo.mak
  41. del tempinc\*.cpp
  42. rd tempinc
  43. del *.obj
  44. cd ..
  45. echo.
  46. echo Please don't forget to change your BOOKSHELF according to readme.1st.
  47. echo.
  48. echo Installation finished! Please read doc/legal and readme.1st *now*.
  49. echo.
  50. pause
  51.