Mercurial > hg > sv-dependency-builds
annotate src/libsamplerate-0.1.9/Make.bat @ 83:ae30d91d2ffe
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +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 |