* harbour/common.mak
* harbour/make_b32.mak
* harbour/make_gcc.mak
* harbour/make_vc.mak
* harbour/make_vcce.mak
* Moved HB and HBPPGEN definitions to common.mak
to reduce unnecesary redundancy
* harbour/contrib/make_b32.bat
* harbour/contrib/make_vc.bat
* Enclosed "help usage message" in double quotes
due to special meaning of "<>" symbols in command
processor.
22 lines
350 B
Batchfile
22 lines
350 B
Batchfile
@echo off
|
|
rem
|
|
rem $Id: make_vc.bat 7991 2007-11-17 11:42:49Z vszakats $
|
|
rem
|
|
|
|
if "%1" == "" goto ERROR
|
|
|
|
echo Entering: %1
|
|
|
|
cd %1
|
|
call make_vc.bat %2 %3 %4 %5 %6 %7 %8 %9
|
|
cd ..
|
|
|
|
goto EXIT
|
|
|
|
:ERROR
|
|
echo ----------------------------------------
|
|
echo Usage: "make_vc.bat <dirname>"
|
|
echo ----------------------------------------
|
|
|
|
:EXIT
|