annotate src/libsamplerate-0.1.8/Make.bat @ 61:d101c4099725

Remove "other" Vamp SDK repo from sv-dependency-builds
author Chris Cannam
date Mon, 06 Mar 2017 13:29:58 +0000
parents c7265573341e
children
rev   line source
Chris@0 1 @echo off
Chris@0 2
Chris@0 3 if "%1"=="check" GOTO CHECK
Chris@0 4 if "%1"=="clean" GOTO CLEAN
Chris@0 5
Chris@0 6 copy /y Win32\config.h src\config.h
Chris@0 7 copy /y Win32\unistd.h examples\unistd.h
Chris@0 8
Chris@0 9 nmake -f Win32\Makefile.msvc
Chris@0 10 goto END
Chris@0 11
Chris@0 12
Chris@0 13 :CHECK
Chris@0 14 nmake -f Win32\Makefile.msvc check
Chris@0 15 goto END
Chris@0 16
Chris@0 17 :CLEAN
Chris@0 18 nmake -f Win32\Makefile.msvc clean
Chris@0 19 goto END
Chris@0 20
Chris@0 21 :END
Chris@0 22