Files
harbour-core/harbour/make_vc.bat
Viktor Szakats 715abdfa6f 2009-02-27 12:52 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* make_b32.bat
  * make_vc.bat
  * make_gcc.sh
    * Redirected old "non-GNU" build starters to the mainstream 
      Harbour GNU Make system, with some measures to keep 
      compatibility. It's not 100% compatible, but the most 
      important settings and aspects should be similar.
      It's recommended for everyone to switch using the GNU
      make system natively, as the non-GNU one will be removed
      in the future, the old way is now legacy and not supported.

  * INSTALL
  * make_gnu.bat
    + Added some more information.
2009-02-27 11:54:12 +00:00

28 lines
896 B
Batchfile

@rem
@rem $Id$
@rem
rem ---------------------------------------------------------------
rem This file is kept for compatibility with old non-GNU make
rem system. Please read INSTALL how to migrate to the GNU make
rem based one.
rem
rem ATTENTION: For this to work, you will need the GNU make.exe
rem (MinGW build is fine) in your PATH _before_ the
rem compiler tools.
rem ---------------------------------------------------------------
@echo off
if "%HB_INSTALL_PREFIX%" == "" set HB_INSTALL_PREFIX=%~dp0
if "%HB_BUILD_DLL%" == "" set HB_BUILD_DLL=yes
set _HB_CC_NAME=%HB_CC_NAME%
if "%HB_BUILD_WINCE%" == "yes" if "%_HB_CC_NAME%" == "" set _HB_CC_NAME=vcce
if not "%HB_BUILD_WINCE%" == "yes" if "%_HB_CC_NAME%" == "" set _HB_CC_NAME=vc
call make_gnu.bat > make_%_HB_CC_NAME%.log
set _HB_CC_NAME=
if exist hbpostmk.bat call hbpostmk.bat