Files
harbour-core/harbour/contrib/make_vc.bat
Marek Paliwoda 4c9a582dbe 2007-11-25 20:20 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)
* 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.
2007-11-25 19:19:56 +00:00

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