annotate src/libsamplerate-0.1.9/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 481f5f8c5634
children
rev   line source
Chris@41 1 @echo off
Chris@41 2
Chris@41 3 if "%1"=="check" GOTO CHECK
Chris@41 4 if "%1"=="clean" GOTO CLEAN
Chris@41 5
Chris@41 6 copy /y Win32\config.h src\config.h
Chris@41 7 copy /y Win32\unistd.h examples\unistd.h
Chris@41 8
Chris@41 9 nmake -f Win32\Makefile.msvc
Chris@41 10 goto END
Chris@41 11
Chris@41 12
Chris@41 13 :CHECK
Chris@41 14 nmake -f Win32\Makefile.msvc check
Chris@41 15 goto END
Chris@41 16
Chris@41 17 :CLEAN
Chris@41 18 nmake -f Win32\Makefile.msvc clean
Chris@41 19 goto END
Chris@41 20
Chris@41 21 :END
Chris@41 22