* 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.
29 lines
805 B
Batchfile
29 lines
805 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
|
|
|
|
set HB_COMPILER=bcc32
|
|
|
|
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_CC_NAME%" == "" set _HB_CC_NAME=b32
|
|
|
|
call make_gnu.bat > make_%_HB_CC_NAME%.log
|
|
|
|
set _HB_CC_NAME=
|
|
|
|
if exist hbpostmk.bat call hbpostmk.bat
|