Mercurial > hg > sv-dependency-builds
annotate src/libsamplerate-0.1.8/Make.bat @ 62:0994c39f1e94
Cap'n Proto v0.6 + build for OSX
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 22 May 2017 10:01:37 +0100 |
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 |