* harbour.spec
* contrib/Makefile
+ contrib/hbsms
+ contrib/hbsms/tests
+ contrib/hbsms/tests/send.prg
+ contrib/hbsms/tests/hbmk.hbm
+ contrib/hbsms/hbsms.prg
+ contrib/hbsms/hbsms.hbc
+ contrib/hbsms/Makefile
* utils/hbmk2/examples/contribf.hbc
+ Readded hbsms lib.
+ Modified to use newly added core com functions
via HBCT .prg level interface. (instead of hbtpathy)
+ Added disclaimer:
EXPERIMENTAL CODE. USE AT YOUR OWN RISK. NO GUARANTEES.
The code well may be pure crap, so if you have problem
with it, supply working patches. Pls note that the
reader function uses locally implemented timeout
functionality, which may or may not work at all,
though you can fix it if you have better idea.
I've only tested it using Mac OS X 10.6 + old Nokia "S40"
phone and one bad SMS number to see it kicks off at
all and that's also the end of my testing possibilities.
77 lines
1.0 KiB
Makefile
77 lines
1.0 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
# contribs _without_ external dependencies
|
|
DIRS := \
|
|
gtwvg \
|
|
hbblink \
|
|
hbbtree \
|
|
hbbz2 \
|
|
hbclipsm \
|
|
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
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|