1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
@echo // Copyright (C) 1996-2004 Markus F.X.J. Oberhumer
@echo //
@echo // Windows 32-bit
@echo // Borland C/C++
@echo //
@call b\prepare.bat
@if "%BECHO%"=="n" echo off
set CC=bcc32
set CF=-O2 -w -w-aus %CFI% -Iacc %CFASM%
set LF=%BLIB%
%CC% %CF% -Isrc -c @b\src.rsp
@if errorlevel 1 goto error
tlib %BLIB% @b\win32\bc.rsp
@if errorlevel 1 goto error
%CC% %CF% -ls -Iexamples examples\simple.c %LF%
@if errorlevel 1 goto error
%CC% %CF% -ls -Iexamples examples\uclpack.c %LF%
@if errorlevel 1 goto error
@call b\done.bat
@goto end
:error
@echo ERROR during build!
:end
@call b\unset.bat
|