* external/patchup.prg
* Changed gtcgi force option to be the more portable-style one.
* contrib/hbqt/utils/hbqtui.prg
+ Added error message
; TOFIX: This tool needs serious ruggedizing to be ready for
production environment. It just fails to give _any_
on screen feedback about what's happening, or what
fails. This means that the caller will fail in various
ways depending on how hbqtui failed. It also doesn't
return anything via errorlevel. Pritpal can you look
at it?
* contrib/Makefile
* contrib/makefile.prg
+ Added experimental call out from GNU Make to Harbour
contrib make orchestrator script.
84 lines
1.2 KiB
Makefile
84 lines
1.2 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
# contribs _without_ external dependencies
|
|
DIRS := \
|
|
gtwvg \
|
|
hbblink \
|
|
hbbz2 \
|
|
hbclipsm \
|
|
hbcomm \
|
|
hbct \
|
|
hbfoxpro \
|
|
hbfship \
|
|
hbgt \
|
|
hbmemio \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnetio \
|
|
hbnf \
|
|
hbodbc \
|
|
hbsms \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbwin \
|
|
hbxpp \
|
|
hbziparc \
|
|
rddbmcdx \
|
|
xhb \
|
|
|
|
# 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
|
|
|
|
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.prg TEST,)
|