blob: 5f4986e7343807bbc1f09dadcd7baa5c879eabac [file] [log] [blame]
Emeric Vigiereebea672012-08-06 17:36:30 -04001@echo off
2
3if "%1"=="check" GOTO CHECK
4if "%1"=="clean" GOTO CLEAN
5
6copy /y Win32\config.h src\config.h
7copy /y Win32\unistd.h examples\unistd.h
8
9nmake -f Win32\Makefile.msvc
10goto END
11
12
13:CHECK
14nmake -f Win32\Makefile.msvc check
15goto END
16
17:CLEAN
18nmake -f Win32\Makefile.msvc clean
19goto END
20
21:END
22