25 lines
360 B
Batchfile
25 lines
360 B
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
if "%1" == "clean" goto CLEAN
|
|
if "%1" == "CLEAN" goto CLEAN
|
|
|
|
:BUILD
|
|
|
|
make -fmakefile.bc %1 %2 %3 > make_b32.log
|
|
if errorlevel 1 notepad make_b32.log
|
|
goto EXIT
|
|
|
|
:CLEAN
|
|
|
|
echo Y | del bin\*.exe > nul
|
|
echo Y | del bin\*.tds > nul
|
|
echo Y | del obj\b32\*.* > nul
|
|
echo Y | del lib\b32\*.* > nul
|
|
goto EXIT
|
|
|
|
:EXIT
|
|
|