home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 13 / DJDEV201.ZIP / bin / setdjgpp.bat < prev    next >
DOS Batch File  |  1995-06-16  |  425b  |  22 lines

  1. @echo off
  2.  
  3. if "%2" == "" goto error
  4.  
  5. rem Everything else is set in djgpp.env now.
  6. set DJGPP=%2/djgpp.env
  7.  
  8. rem  Don't forget to change your PATH!
  9.  
  10. goto exit
  11.  
  12. :error
  13. echo.
  14. echo You must call this with DJGPP's installation directory passed
  15. echo twice, first with DOS-style slashes, then with Unix-style
  16. echo slashes.  Example:
  17. echo.
  18. echo   c:\stuff\djgpp\setdjgpp c:\stuff\djgpp c:/stuff/djgpp
  19. echo.
  20.  
  21. :exit
  22.