annotate src/libsamplerate-0.1.8/Make.bat @ 168:ceec0dd9ec9c

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 <cannam@all-day-breakfast.com>
date Fri, 07 Feb 2020 11:51:13 +0000
parents 545efbb81310
children
rev   line source
cannam@85 1 @echo off
cannam@85 2
cannam@85 3 if "%1"=="check" GOTO CHECK
cannam@85 4 if "%1"=="clean" GOTO CLEAN
cannam@85 5
cannam@85 6 copy /y Win32\config.h src\config.h
cannam@85 7 copy /y Win32\unistd.h examples\unistd.h
cannam@85 8
cannam@85 9 nmake -f Win32\Makefile.msvc
cannam@85 10 goto END
cannam@85 11
cannam@85 12
cannam@85 13 :CHECK
cannam@85 14 nmake -f Win32\Makefile.msvc check
cannam@85 15 goto END
cannam@85 16
cannam@85 17 :CLEAN
cannam@85 18 nmake -f Win32\Makefile.msvc clean
cannam@85 19 goto END
cannam@85 20
cannam@85 21 :END
cannam@85 22