Files
harbour-core/harbour/external/Makefile
Viktor Szakats abba1977a2 2010-07-04 20:45 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
  * external/Makefile
  * contrib/Makefile
  * utils/Makefile
    - Deleted HB_CONTRIB_ADDONS, HB_EXTERNAL_ADDONS,
      HB_UTIL_ADDONS.
    + Documented HB_ADDONS_LIB, HB_ADDONS_BIN (still not
      necessarily the final names)

  * package/winuni/mpkg_win_uni_extra_copy.bat
  * package/winuni/mpkg_win_uni.bat
  * package/winuni/mpkg_win_uni.nsi
    + Included hbnetio in Windows based installers.
      (.zip already had it after previous changes)

  * package/winuni/mpkg_win_uni_extra_copy.bat
  * package/winuni/mpkg_win_uni.bat
  * package/winuni/mpkg_win_uni.nsi
  * config/postinst.hbs
    - Deleted building hbrun-dll. It makes simpler,
      won't be missed by too many users. Users needing
      fully shared binaries can use HB_BUILD_SHARED=yes.
2010-07-04 18:48:39 +00:00

30 lines
400 B
Makefile

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