* harbour/common.mak
* harbour/makefile.vc
* added some missing declaration for PCRE library
* harbour/include/hbregex.h
* added PCRE_STATIC - it fixes problem with MinGW build
* harbour/utils/hbrun/Makefile
* removed one redundant hbpcre from library list
37 lines
386 B
Makefile
37 lines
386 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../
|
|
|
|
PRG_SOURCES=\
|
|
hbrun.prg \
|
|
external.prg \
|
|
|
|
PRG_MAIN=hbrun.prg
|
|
|
|
LIBS=\
|
|
debug \
|
|
vm \
|
|
rtl \
|
|
lang \
|
|
rdd \
|
|
rtl \
|
|
vm \
|
|
macro \
|
|
pp \
|
|
compiler \
|
|
common \
|
|
|
|
ifeq ($(findstring -DHB_PCRE_REGEX, $(C_USR)),)
|
|
ifeq ($(findstring -DHB_POSIX_REGEX, $(C_USR)),)
|
|
LIBS += hbpcre
|
|
endif
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|