* external/Makefile
* contrib/Makefile
! Fixed make error when all subdirs were excluded.
66 lines
691 B
Makefile
66 lines
691 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
ifeq ($(HB_CONTRIBLIBS),)
|
|
|
|
# standalone contribs
|
|
DIRS=\
|
|
gtwvg \
|
|
hbbmcdx \
|
|
hbbtree \
|
|
hbclipsm \
|
|
hbcrypt \
|
|
hbct \
|
|
hbgt \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnf \
|
|
hbodbc \
|
|
hbole \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbvpdf \
|
|
hbwin \
|
|
hbziparc \
|
|
rddado \
|
|
xhb \
|
|
|
|
# contribs with external dependencies
|
|
DIRS +=\
|
|
gtalleg \
|
|
hbblat \
|
|
hbcurl \
|
|
hbfbird \
|
|
hbfimage \
|
|
hbgd \
|
|
hbhpdf \
|
|
hbmsql \
|
|
hbmysql \
|
|
hbpgsql \
|
|
hbqt \
|
|
hbssl \
|
|
rddads \
|
|
rddsql \
|
|
|
|
else
|
|
|
|
ifneq ($(HB_CONTRIBLIBS),no)
|
|
DIRS = $(HB_CONTRIBLIBS)
|
|
endif
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
# DIRS += examples
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.cf
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|