mirror of
https://github.com/snowie2000/mactype.git
synced 2025-01-09 04:07:44 +08:00
20 lines
202 B
Batchfile
20 lines
202 B
Batchfile
|
@echo off
|
||
|
|
||
|
setlocal
|
||
|
|
||
|
set INCLUDE=..\..\..\freetype2\include;%INCLUDE%
|
||
|
set LIB=..\..;%LIB%
|
||
|
|
||
|
:go
|
||
|
nmake -f Makefile.vc2005 %*
|
||
|
if errorlevel 1 goto err
|
||
|
goto end
|
||
|
|
||
|
:err
|
||
|
pause
|
||
|
goto go
|
||
|
|
||
|
:end
|
||
|
endlocal
|
||
|
rem pause
|