- utils/hbextern
+ examples/hbextern
- examples/hbextern/make_c5x.bat
* examples/hbextern/hbextern.prg
+ examples/hbextern/hbextern.hbp
- examples/hbextern/Makefile
* hbextern tool moved to examples.
- Deleted Clipper build batch file.
+ Added hbmk2 build file.
* utils/hbmk2/examples/minigui.hbc
+ Added xhb compatbility (untested).
* contrib/Makefile
+ Enabled hbxbp lib to be built by default.
64 lines
668 B
Makefile
64 lines
668 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
ifeq ($(HB_CONTRIBLIBS),)
|
|
|
|
# standalone contribs
|
|
DIRS=\
|
|
gtwvg \
|
|
hbbmcdx \
|
|
hbbtree \
|
|
hbclipsm \
|
|
hbcrypt \
|
|
hbct \
|
|
hbgt \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnf \
|
|
hbodbc \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbvpdf \
|
|
hbwin \
|
|
hbxbp \
|
|
hbziparc \
|
|
rddado \
|
|
xhb \
|
|
xpp \
|
|
|
|
# contribs with external dependencies
|
|
DIRS +=\
|
|
gtalleg \
|
|
hbblat \
|
|
hbcurl \
|
|
hbfbird \
|
|
hbfimage \
|
|
hbgd \
|
|
hbhpdf \
|
|
hbmysql \
|
|
hbpgsql \
|
|
hbqt \
|
|
hbssl \
|
|
rddads \
|
|
rddsql \
|
|
|
|
else
|
|
|
|
ifneq ($(HB_CONTRIBLIBS),no)
|
|
DIRS = $(HB_CONTRIBLIBS)
|
|
endif
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.cf
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|