Files
harbour-core/harbour/make_b16.bat
2000-02-14 05:31:56 +00:00

24 lines
331 B
Batchfile

@echo off
rem
rem $Id$
rem
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
:BUILD
make -fmakefile.bc -DB16 %1 %2 %3 > make_b16.log
if errorlevel 1 edit make_b16.log
goto EXIT
:CLEAN
echo Y | del bin\*.exe > nul
echo Y | del obj\b16\*.* > nul
echo Y | del lib\b16\*.* > nul
goto EXIT
:EXIT