Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats 6ff6aa0f45 2009-09-16 12:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/examples/contribf.hbc
  * contrib/Makefile
  - contrib/hbvpdf
  + examples/hbvpdf
    * Moved hbvpdf lib to examples section.
      This code is barely updated and offers duplicate functionality
      of superior hbhpdf lib.

  * source/rtl/filesys.c
    * Minor formatting.
2009-09-16 11:00:23 +00:00

69 lines
791 B
Makefile

#
# $Id$
#
ROOT := ../
ifeq ($(HB_CONTRIBLIBS),)
# standalone contribs
DIRS := \
gtwvg \
hbbmcdx \
hbbtree \
hbclipsm \
hbct \
hbgt \
hbmisc \
hbmzip \
hbnetio \
hbnf \
hbodbc \
hbsqlit3 \
hbtip \
hbtpathy \
hbwin \
hbziparc \
rddado \
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