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

25 lines
366 B
Batchfile

@echo off
rem
rem $Id$
rem
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
:BUILD
make -fmakefile.bc -DB40 %1 %2 %3 > make_b40.log
if errorlevel 1 notepad make_b40.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