Files
harbour-core/harbour-RC1/tests/gnu_test.bat
2008-06-04 05:13:20 +00:00

21 lines
430 B
Batchfile

@echo off
rem
rem $Id$
rem
if %HB_ARCHITECTURE%.==. goto BAD_ARCH
if %HB_COMPILER%.==. goto BAD_COMP
if exist %HB_ARCHITECTURE%\%HB_COMPILER%\%1.* del %HB_ARCHITECTURE%\%HB_COMPILER%\%1.*
make -r "PRG_SOURCES=%1.prg"
if not errorlevel 1 %HB_ARCHITECTURE%\%HB_COMPILER%\%1 %2 %3 %4 %5 %6 %7 %8 %9
goto EXIT
:BAD_ARCH
echo HB_ARCHITECTURE is not set.
goto EXIT
:BAD_COMP
echo HB_COMPILER is not set.
:EXIT