* contrib/Makefile
- contrib/xpp
+ contrib/hbxpp
* contrib/hbxpp/Makefile
- contrib/hbxpp/xpp.hbc
+ contrib/hbxpp/hbxpp.hbc
- contrib/hbxpp/xppextrn.ch
+ contrib/hbxpp/hbxppext.ch
- contrib/hbxpp/xpp.ch
+ contrib/hbxpp/hbxpp.ch
* contrib/hbxpp/tests/hbmk.hbm
* utils/hbmk2/examples/contribf.hbc
* Renamed 'xpp' lib to 'hbxpp'. Final name.
67 lines
943 B
Makefile
67 lines
943 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
# contribs _without_ external dependencies
|
|
DIRS := \
|
|
gtwvg \
|
|
hbbtree \
|
|
hbclipsm \
|
|
hbct \
|
|
hbfship \
|
|
hbgt \
|
|
hbmemio \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnetio \
|
|
hbnf \
|
|
hbodbc \
|
|
hbsms \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbwin \
|
|
hbxpp \
|
|
hbziparc \
|
|
rddbmcdx \
|
|
xhb \
|
|
|
|
# contribs _with_ external dependencies
|
|
DIRS += \
|
|
gtalleg \
|
|
hbblat \
|
|
hbcairo \
|
|
hbcurl \
|
|
hbfbird \
|
|
hbfimage \
|
|
hbgd \
|
|
hbhpdf \
|
|
hbmysql \
|
|
hbpgsql \
|
|
hbqt \
|
|
hbssl \
|
|
rddads \
|
|
rddsql \
|
|
|
|
# contribs dependent on above
|
|
DIRS += \
|
|
hbxbp \
|
|
|
|
ifeq ($(HB_CONTRIBLIBS),no)
|
|
DIRS :=
|
|
else ifeq ($(firstword $(HB_CONTRIBLIBS)),no)
|
|
DIRS := $(filter-out $(HB_CONTRIBLIBS),$(DIRS))
|
|
else ifneq ($(HB_CONTRIBLIBS),)
|
|
DIRS := $(HB_CONTRIBLIBS)
|
|
endif
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|