Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats 46519d7827 2009-11-09 23:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/rddads/adsfunc.c
    * Minor cleanup.

  * doc/dirstruc.txt
  * utils/hbmk2/examples/contribf.hbc
  * contrib/Makefile
  - contrib/rddado
  + examples/rddado
  + examples/rddado/rddado.hbp
  - examples/rddado/Makefile
    * Moved rddado from contrib to examples area.
      It's an almost working example.
2009-11-09 22:38:57 +00:00

69 lines
792 B
Makefile

#
# $Id$
#
ROOT := ../
ifeq ($(HB_CONTRIBLIBS),)
# standalone contribs
DIRS := \
gtwvg \
hbbmcdx \
hbbtree \
hbclipsm \
hbct \
hbgt \
hbmemio \
hbmisc \
hbmzip \
hbnetio \
hbnf \
hbodbc \
hbsqlit3 \
hbtip \
hbtpathy \
hbwin \
hbziparc \
xhb \
xpp \
# contribs with external dependencies
DIRS += \
gtalleg \
hbblat \
hbcurl \
hbfbird \
hbfimage \
hbgd \
hbhpdf \
hbmysql \
hbpgsql \
hbqt \
hbssl \
rddads \
rddsql \
# contribs dependent on above
DIRS += \
hbxbp \
else
ifneq ($(HB_CONTRIBLIBS),no)
DIRS := $(HB_CONTRIBLIBS)
else
DIRS :=
endif
endif
DIRS += $(HB_CONTRIB_ADDONS)
ifneq ($(DIRS),)
include $(TOP)$(ROOT)config/dir.mk
else
include $(TOP)$(ROOT)config/none.mk
endif