Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats 8bb33ae346 2010-03-04 19:08 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* harbour.spec
  * contrib/Makefile
  - contrib/hbsms
    - Deleted hbsms lib.
2010-03-04 18:08:34 +00:00

67 lines
946 B
Makefile

#
# $Id$
#
ROOT := ../
# contribs _without_ external dependencies
DIRS := \
gtwvg \
hbbtree \
hbclipsm \
hbct \
hbfoxpro \
hbfship \
hbgt \
hbmemio \
hbmisc \
hbmzip \
hbnetio \
hbnf \
hbodbc \
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