* harbour/bin/hb-func.sh
* do not pass linking parameters to GCC/G++ when is used for
compilation only
* harbour/contrib/rdd_ads/Makefile
* set -DWIN32 for W32 compilation
* harbour/contrib/rdd_ads/makefile.bc
* formatting
* harbour/include/hbapi.h
* harbour/source/rtl/strcase.c
+ added hb_charUpper() and hb_charLower()
* harbour/include/hbapigt.h
* harbour/include/hbgtcore.h
* harbour/source/rtl/gtapi.c
* harbour/source/rtl/hbgtcore.c
+ added support for ALERT() on GT level - C functions: hb_gtAlert()/
hb_gt_Alert()
To replicate some details of Clipper and CT3 behavior ALERT() cannot
be implement only on upper level as .prg function
* harbour/source/rtl/gtfunc.c
+ added .prg function HB_GTALLERT()
* harbour/source/rtl/alert.prg
* redirected ALERT() to HB_GTALLERT()
* harbour/source/rtl/fstemp.c
* use the same case conversion as in low level hb_fs*() functions to
avoid possible problems with national characters
* harbour/source/rtl/dates.c
* harbour/source/rtl/set.c
* harbour/source/rtl/strmatch.c
* harbour/source/rtl/transfrm.c
* use hb_charUpper()
* casting
29 lines
625 B
Plaintext
29 lines
625 B
Plaintext
#
|
|
# $Id$
|
|
#
|
|
|
|
# makefile for Borland C/C++ 32 bits
|
|
# Building of rddads.lib - RDD for Advantage Database Server
|
|
|
|
INCLUDE_DIR = ..\..\include
|
|
|
|
BIN_DIR = ..\..\bin\b32
|
|
OBJ_DIR = ..\..\obj\b32
|
|
LIB_DIR = ..\..\lib\b32
|
|
|
|
$(LIB_DIR)\rddads.lib : \
|
|
$(OBJ_DIR)\ads1.obj \
|
|
$(OBJ_DIR)\adsfunc.obj \
|
|
$(OBJ_DIR)\adsmgmnt.obj
|
|
|
|
$(OBJ_DIR)\ads1.obj : ads1.c
|
|
$(OBJ_DIR)\adsfunc.obj : adsfunc.c
|
|
$(OBJ_DIR)\adsmgmnt.obj : adsmgmnt.c
|
|
|
|
.c.obj:
|
|
bcc32 $(CLIBFLAGS) $(C_USR) -c -O2 -DWIN32 -I$(INCLUDE_DIR) -o$@ $<
|
|
tlib $(LIB_DIR)\rddads.lib -+$@,,
|
|
|
|
.prg.c:
|
|
$(BIN_DIR)\harbour.exe $< -q0 -w -es2 -gc0 -n -i$(INCLUDE_DIR) -o$@
|