makew32.bat 791 B

1234567891011121314151617181920212223242526272829
  1. @echo off
  2. rem $LynxId: makew32.bat,v 1.5 2012/07/05 23:34:52 tom Exp $
  3. setlocal
  4. rem Check if GW32_ROOT is defined, and if not, fill in a default value.
  5. if not "x%GW32_ROOT%"=="x" goto exists
  6. set GW32_ROOT=c:\app\gnuwin32
  7. :exists
  8. if exist "%GW32_ROOT%" goto doit
  9. echo ? %GW32_ROOT% does not exist
  10. goto finish
  11. :doit
  12. rem if exist %GW32_ROOT%\bcblibs set PATH=%PATH%;%GW32_ROOT%\bcblibs
  13. rem if not exist %GW32_ROOT%\bcblibs set PATH=%PATH%;%GW32_ROOT%\bin
  14. set PATH=%PATH%;%GW32_ROOT%\bin
  15. rem Borland C
  16. rem -m Displays the date and time stamp of each file
  17. rem -c Caches auto-dependency information
  18. make.exe -m -c -f makefile.bcb %1 %2
  19. REM make.exe -m -c -f makefile.deb
  20. REM make.exe -f makefile.win
  21. :finish
  22. endlocal