Files
harbour-core/harbour/make_b32.bat
2000-03-02 19:49:22 +00:00

26 lines
395 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
echo Y | del make_b32.log > nul
goto EXIT
:EXIT