Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats e0ca13db06 2009-09-21 00:11 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- contrib/iodmem
  + contrib/hbmemio
  - contrib/hbmemio/iodmem.hbc
  + contrib/hbmemio/hbmemio.hbc
  * contrib/hbmemio/Makefile
  * contrib/Makefile
    * Renamed to have 'hb' prefix and to be in line with hbnetio.
    ! Fixed props on Makefile.
    ! Corrected to list this lib in no-dependency section in contrib/Makefile.
2009-09-21 22:13:27 +00:00

70 lines
804 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 \
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