Files
harbour-core/harbour/contrib/Makefile
Viktor Szakats ade4707157 2010-07-04 14:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- bin/patchup.prg
  + bin/patchup.hbs
  - utils/hbmk2/examples/plug_tpl.prg
  + utils/hbmk2/examples/plug_tpl.hbs
  - contrib/hbide/plugins/savebackup.prg
  + contrib/hbide/plugins/savebackup.hbs
    * Renamed standalone and plugin Harbour scripts
      to have .hbs extension.

  * contrib/hbqt/hbqt.hbc
  - contrib/hbqt/hbmk2_plugin_qt.prg
  + contrib/hbqt/hbmk2_plugin_qt.hbs
    * Renamed standalone and plugin Harbour scripts
      to have .hbs extension.

  * contrib/Makefile
  - contrib/makefile.prg
  + contrib/makefile.hbs
    * Renamed standalone and plugin Harbour scripts
      to have .hbs extension.

  * Makefile
  - config/postinst.prg
  + config/postinst.hbs
    * Renamed standalone and plugin Harbour scripts
      to have .hbs extension.
2010-07-04 13:02:00 +00:00

92 lines
1.6 KiB
Makefile

#
# $Id$
#
ROOT := ../
# contribs _without_ external dependencies
DIRS := \
gtwvg \
hbbz2 \
hbcomm \
hbct \
hbfoxpro \
hbfship \
hbgt \
hbmemio \
hbmisc \
hbmzip \
hbnetio \
hbnf \
hbodbc \
hbsms \
hbsqlit3 \
hbtip \
hbtpathy \
hbwin \
hbxpp \
hbziparc \
xhb \
# under testing in makefile.hbs
# hbblink \
# hbclipsm \
# rddbmcdx \
# contribs _with_ external dependencies
DIRS += \
gtalleg \
hbblat \
hbcairo \
hbcups \
hbcurl \
hbfbird \
hbfimage \
hbgd \
hbhpdf \
hbmysql \
hbpgsql \
hbqt \
hbssl \
rddads \
rddsql \
sddfb \
sddmy \
sddoci \
sddodbc \
sddpg \
sddsqlt3 \
# contribs dependent on above
DIRS += \
hbxbp \
ifeq ($(HB_CONTRIBLIBS),no)
DIRS :=
else
ifeq ($(firstword $(HB_CONTRIBLIBS)),no)
DIRS := $(filter-out $(HB_CONTRIBLIBS),$(DIRS))
else
ifneq ($(HB_CONTRIBLIBS),)
DIRS := $(HB_CONTRIBLIBS)
endif
endif
endif
DIRS += $(HB_CONTRIB_ADDONS)
ifneq ($(DIRS),)
include $(TOP)$(ROOT)config/dir.mk
else
include $(TOP)$(ROOT)config/none.mk
endif
clean::
$(if $(wildcard $(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT)),+$(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT) --hb:gtcgi $(TOP)$(ROOT)contrib/makefile.hbs clean test,)
install::
$(if $(wildcard $(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT)),+$(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT) --hb:gtcgi $(TOP)$(ROOT)contrib/makefile.hbs install test,)
all:
$(if $(wildcard $(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT)),+$(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT) --hb:gtcgi $(TOP)$(ROOT)contrib/makefile.hbs all test,)