* INSTALL
* make_b32.bat
* doc/gmake.txt
* bin/postinst.bat
* bin/hb-mkdyn.bat
* make_gnu.bat
* contrib/hbfimage/readme.txt
* contrib/examples/uhttpd/modules/bldhrb.bat
* source/vm/Makefile
* source/rtl/console.c
* source/compiler/gencobj.c
* utils/hbmk2/hbmk2.prg
* utils/hbmk2/examples/winapi.hbp
- config/win/bcc32.cf
+ config/win/bcc.cf
* Long time TODO done: Renamed bcc32 compiler name to bcc.
bcc32 is still accepted by make_gnu.bat, but will be
removed in the future, so it's recommended to update
your local settings to use:
set HB_COMPILER=bcc
- config/dos/bcc16.cf
- Deleted bcc16 compiler support. I didn't work since ages,
and Harbour doesn't support 16-bit compilers anyway.
31 lines
878 B
Batchfile
31 lines
878 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=bcc
|
|
|
|
if "%HB_INSTALL_PREFIX%" == "" set HB_INSTALL_PREFIX=%~dp0
|
|
set _HB_CC_NAME=%HB_CC_NAME%
|
|
if "%_HB_CC_NAME%" == "" set _HB_CC_NAME=b32
|
|
|
|
rem ; NOTE: For complete compatibility please uncomment line below:
|
|
rem if "%HB_BUILD_DLL%" == "" set HB_BUILD_DLL=yes
|
|
|
|
call make_gnu.bat > make_%_HB_CC_NAME%.log
|
|
|
|
set _HB_CC_NAME=
|
|
|
|
if exist hbpostmk.bat call hbpostmk.bat
|