Files
harbour-core/harbour/external/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

31 lines
465 B
Makefile

#
# $Id$
#
ROOT := ../
# standalone contribs
DIRS := \
sqlite3 \
libhpdf \
libpng \
jpeg \
pcre \
zlib \
ifeq ($(HB_EXTERNALLIBS),no)
DIRS :=
else ifeq ($(firstword $(HB_EXTERNALLIBS)),no)
DIRS := $(filter-out $(HB_EXTERNALLIBS),$(DIRS))
else ifneq ($(HB_EXTERNALLIBS),)
DIRS := $(HB_EXTERNALLIBS)
endif
DIRS += $(HB_EXTERNAL_ADDONS)
ifneq ($(DIRS),)
include $(TOP)$(ROOT)config/dir.mk
else
include $(TOP)$(ROOT)config/none.mk
endif