* src/compiler/genc.c
* src/compiler/gencc.c
* Using HB_BYTE instead of BYTE in generated .c sources.
* contrib/Makefile
+ contrib/hbsms
+ contrib/hbsms/Makefile
+ contrib/hbsms/hbsms.hbc
+ contrib/hbsms/hbsms.prg
+ contrib/hbsms/tests
+ contrib/hbsms/tests/hbmk.hbm
+ contrib/hbsms/tests/send.prg
+ Added SMS library. Currently sending is implemented.
SMS_SEND( <cPort>, <cPhoneNumber>, <cText>, [<lDeliveryReport>], [<cPIN>] ) -> <nErrorCode. 0 = success>
; Uses hbtpathy.
* contrib/hbwin/tests/hbmk.hbm
! Missing -es2.
70 lines
803 B
Makefile
70 lines
803 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
ifeq ($(HB_CONTRIBLIBS),)
|
|
|
|
# standalone contribs
|
|
|
|
DIRS := \
|
|
gtwvg \
|
|
hbbmcdx \
|
|
hbbtree \
|
|
hbclipsm \
|
|
hbct \
|
|
hbgt \
|
|
hbmemio \
|
|
hbmisc \
|
|
hbmzip \
|
|
hbnetio \
|
|
hbnf \
|
|
hbodbc \
|
|
hbsms \
|
|
hbsqlit3 \
|
|
hbtip \
|
|
hbtpathy \
|
|
hbwin \
|
|
hbziparc \
|
|
xhb \
|
|
xpp \
|
|
|
|
# contribs with external dependencies
|
|
DIRS += \
|
|
gtalleg \
|
|
hbblat \
|
|
hbcurl \
|
|
hbfbird \
|
|
hbfimage \
|
|
hbgd \
|
|
hbhpdf \
|
|
hbmysql \
|
|
hbpgsql \
|
|
hbqt \
|
|
hbssl \
|
|
rddads \
|
|
rddsql \
|
|
|
|
# contribs dependent on above
|
|
DIRS += \
|
|
hbxbp \
|
|
|
|
else
|
|
|
|
ifneq ($(HB_CONTRIBLIBS),no)
|
|
DIRS := $(HB_CONTRIBLIBS)
|
|
else
|
|
DIRS :=
|
|
endif
|
|
|
|
endif
|
|
|
|
DIRS += $(HB_CONTRIB_ADDONS)
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|