* make_b32.mak
* make_vc.mak
* common.mak
* utils/hbdoc/Makefile
* utils/hbmake/Makefile
* utils/hbtest/Makefile
* utils/hbrun/Makefile
% Setup to build shipped Harbour executables with -gc0.
; TODO: Please update make_gcc.mak.
* ChangeLog
+ Marked one change as [TOMERGE 1.0]
44 lines
496 B
Makefile
44 lines
496 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../
|
|
|
|
PRG_SOURCES=\
|
|
hbrun.prg \
|
|
|
|
PRG_MAIN=hbrun.prg
|
|
|
|
LIBS=\
|
|
hbextern \
|
|
hbdebug \
|
|
hbvm \
|
|
hbrtl \
|
|
hblang \
|
|
hbcpage \
|
|
hbrdd \
|
|
hbrtl \
|
|
hbvm \
|
|
hbmacro \
|
|
hbpp \
|
|
hbcplr \
|
|
hbcommon \
|
|
|
|
ifeq ($(findstring -DHB_PCRE_REGEX, $(C_USR)),)
|
|
ifeq ($(findstring -DHB_POSIX_REGEX, $(C_USR)),)
|
|
LIBS += hbpcre
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(findstring -DHB_EXT_ZLIB, $(C_USR)),)
|
|
LIBS += hbzlib
|
|
endif
|
|
|
|
PRG_USR += -gc0
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|