* utils/hbmk2/hbmk2.prg
* utils/hbmk2/Makefile
* common.mak
+ Added -DHBMK_INTEGRATED_COMPILER compile time option
to enable integrated Harbour compiler. Experimental,
please test. This results is bigger executable (obviously)
but may be more efficient on some platforms.
% Using .exe extension for external commands on non-*nix.
* Using slightly different format to echo commands on
screen, they are now printed in a new line and they are
not put between quotes.
31 lines
277 B
Makefile
31 lines
277 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../
|
|
|
|
PRG_SOURCES=\
|
|
hbmk2.prg \
|
|
|
|
PRG_MAIN=hbmk2.prg
|
|
|
|
LIBS=\
|
|
hbdebug \
|
|
hbvm \
|
|
hbrtl \
|
|
hblang \
|
|
hbcpage \
|
|
hbnulrdd \
|
|
hbrtl \
|
|
hbvm \
|
|
hbmacro \
|
|
hbcommon \
|
|
hbpp \
|
|
hbcplr \
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|