Subversion Repositories filter_foundry

Rev

Rev 397 | View as "text/x-msdos-batch" | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. echo off
  2.  
  3. cd /d "%~dp0"
  4.  
  5. set PATHBAK=%PATH%
  6.  
  7. rem Download "Online installer here"
  8. rem https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/installer/mingw-w64-install.exe/download
  9.  
  10. rem 64 Bit
  11. rem Please adjust this path!
  12. set PATH=D:\mingw-w64\x86_64-8.1.0-win32-seh-rt_v6-rev0\mingw64\bin;%PATHBAK%
  13. mingw32-make -f Makefile.win clean
  14. mingw32-make -f Makefile.win
  15. move FilterFoundry.8bf FilterFoundry64.tmp
  16.  
  17. rem 32 Bit
  18. rem Please adjust this path!
  19. set PATH=D:\mingw-w64\i686-8.1.0-win32-dwarf-rt_v6-rev0\mingw32\bin;%PATHBAK%
  20. mingw32-make -f Makefile.win clean
  21. mingw32-make -f Makefile.win
  22. move FilterFoundry.8bf FilterFoundry32.tmp
  23.  
  24.  
  25. move FilterFoundry32.tmp FilterFoundry.8bf
  26. move FilterFoundry64.tmp FilterFoundry64.8bf
  27.  
  28. echo.
  29. echo.
  30. echo.
  31. rem dir *.8bf
  32.  
  33. cd 3264_mixer
  34. call foundry_3264_mixer.bat
  35. cd ..
  36.  
  37. pause.
  38.