Files
harbour-core/harbour/tests/gnu_test.bat
1999-10-04 19:53:30 +00:00

20 lines
403 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