annotate src/libsamplerate-0.1.8/Make.bat @ 0:c7265573341e

Import initial set of sources
author Chris Cannam
date Mon, 18 Mar 2013 14:12:14 +0000
parents
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