Subversion Repositories filter_foundry

Rev

View as "text/x-msdos-batch" | Blame | Last modification | View Log | RSS feed

  1. echo off
  2.  
  3. cd /d "%~dp0"
  4.  
  5. set PATHBAK=%PATH%
  6.  
  7. rem 64 Bit
  8. rem Please adjust this path!
  9. set PATH=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATHBAK%
  10. mingw32-make -f Makefile.win clean
  11. mingw32-make -f Makefile.win
  12. move FilterFoundry.8bf FilterFoundry64.tmp
  13.  
  14. rem 32 Bit
  15. rem Please adjust this path!
  16. set PATH=C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;%PATHBAK%
  17. mingw32-make -f Makefile.win clean
  18. mingw32-make -f Makefile.win
  19. move FilterFoundry.8bf FilterFoundry32.tmp
  20.  
  21.  
  22. move FilterFoundry32.tmp FilterFoundry.8bf
  23. move FilterFoundry64.tmp FilterFoundry64.8bf
  24.  
  25. echo.
  26. echo.
  27. echo.
  28. dir *.8bf
  29.  
  30. pause.
  31.