Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats c00a4ce387 2010-01-28 04:23 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
  * external/Makefile
  * contrib/Makefile
    + Added build option to exclude specific list of contrib/external 
      libraries using syntax: 'HB_CONTRIBLIBS=no lib1 lib2 libn'
2010-01-28 03:24:37 +00:00

66 lines
927 B
Makefile

#
# $Id$
#
ROOT := ../
# contribs _without_ external dependencies
DIRS := \
gtwvg \
hbbmcdx \
hbbtree \
hbclipsm \
hbct \
hbgt \
hbmemio \
hbmisc \
hbmzip \
hbnetio \
hbnf \
hbodbc \
hbsms \
hbsqlit3 \
hbtip \
hbtpathy \
hbwin \
hbziparc \
xhb \
xpp \
# 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