1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-18 20:55:09 +00:00
qb64/internal/c/parts/audio/conversion/download/libsamplerate-0.1.8/Make.bat
Galleon bd012cc6f0 Updated image decoding files (some were missing)
'libresample' included (but still using 'libsamplerate')
2013-05-10 13:17:41 +10:00

22 lines
318 B
Batchfile

@echo off
if "%1"=="check" GOTO CHECK
if "%1"=="clean" GOTO CLEAN
copy /y Win32\config.h src\config.h
copy /y Win32\unistd.h examples\unistd.h
nmake -f Win32\Makefile.msvc
goto END
:CHECK
nmake -f Win32\Makefile.msvc check
goto END
:CLEAN
nmake -f Win32\Makefile.msvc clean
goto END
:END