home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / WHEEL1.ZIP / COMPILE.CMD < prev    next >
OS/2 REXX Batch file  |  1990-02-07  |  875b  |  24 lines

  1. setlocal
  2.  
  3. rem Change the first "set include" below to point to the drive and
  4. rem directory where you keep your MSC multithread includes
  5. rem Change the second "set include" below to point to the drive and
  6. rem directory where you keep your OS/2 C binding includes
  7. set include=d:\sdk\include\mt;d:\sdk\include
  8.  
  9. rem Change the "set tmp" below to point to a scratch drive and directory
  10. set tmp=l:\
  11.  
  12. rem Note that compiler error C4058 is expected. It is a known bug in MSC 5.1.
  13. rem The message is spurious; no run-time error condition exists.
  14. make telluser
  15. make allocmem
  16. make wheel
  17. make test
  18.  
  19. rem Remember to either (a) copy *.dll to a directory named in your LIBPATH
  20. rem or (b) update your LIBPATH (and re-boot) to point to this directory.
  21. rem Alternatively, you can use "LIBPATH=.;etc" where the initial ".;"
  22. rem signifies the current directory.
  23. endlocal
  24.