20 lines
409 B
Batchfile
20 lines
409 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
|