* harbour/include/hbapifs.h
* harbour/source/rtl/filebuf.c
+ added hb_fileRename()
* harbour/contrib/hbnetio/netio.h
* harbour/contrib/hbnetio/netiocli.c
* harbour/contrib/hbnetio/netiosrv.c
+ implemented Rename method in NETIO
* harbour/include/hbapirdd.h
* harbour/source/rdd/workarea.c
+ added new non workarea method: RENAME()
* harbour/source/rdd/Makefile
* harbour/include/hbextern.ch
* harbour/source/rdd/dbcmd.c
+ harbour/source/rdd/dbrename.c
+ added new .prg function:
dbRename( <cTable> [,<cIndex>], <cNewName>, ;
[<cRDD>], [<nConnect>] ) -> <lOK>
+ added hb_dbRename() - synonym of dbRename()
* harbour/source/rdd/dbf1.c
+ added support for dbRename() in DBF* RDDs
* harbour/include/hbrdddbf.h
* harbour/include/hbrddcdx.h
* harbour/include/hbrddfpt.h
* harbour/include/hbrddntx.h
* harbour/source/rdd/dbffpt/dbffpt1.c
* harbour/source/rdd/dbfntx/dbfntx1.c
* harbour/source/rdd/dbfnsx/dbfnsx1.c
* harbour/source/rdd/dbfcdx/dbfcdx1.c
* harbour/source/rdd/sdf1.c
* harbour/source/rdd/delim1.c
* harbour/include/hbusrrdd.ch
* harbour/source/rdd/usrrdd/usrrdd.c
* harbour/contrib/rddads/adsx.c
* harbour/contrib/rddads/ads1.c
* harbour/contrib/rddsql/sqlbase.c
* harbour/contrib/rddsql/sqlmix.c
* harbour/contrib/hbbmcdx/bmdbfcdx.c
* harbour/contrib/hbbmcdx/hbbmcdx.h
+ updated to compile with new RDD method: RENAME
TODO: add support for this method to ADS* RDDs
64 lines
970 B
Makefile
64 lines
970 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
ifneq ($(HB_PLATFORM),wce)
|
|
HB_PRGFLAGS := -gc3
|
|
endif
|
|
|
|
C_SOURCES := \
|
|
dbcmd.c \
|
|
dbcmd53.c \
|
|
dbcmdhb.c \
|
|
dbcmdx.c \
|
|
dbdetach.c \
|
|
dbdetacx.c \
|
|
dbdrop.c \
|
|
dbexists.c \
|
|
dbrename.c \
|
|
fieldhb.c \
|
|
workarea.c \
|
|
wacore.c \
|
|
wafunc.c \
|
|
dbf1.c \
|
|
dbnubs.c \
|
|
dbsql.c \
|
|
delim1.c \
|
|
sdf1.c \
|
|
rddinfo.c \
|
|
hbdbsort.c \
|
|
|
|
PRG_SOURCES := \
|
|
dbdelim.prg \
|
|
dbfuncs.prg \
|
|
dbfuncsx.prg \
|
|
dbjoin.prg \
|
|
dbjoinx.prg \
|
|
dblist.prg \
|
|
dblistx.prg \
|
|
dbsdf.prg \
|
|
dbsort.prg \
|
|
dbsortx.prg \
|
|
dbstrux.prg \
|
|
dbstruxu.prg \
|
|
dbstruxx.prg \
|
|
dbtotal.prg \
|
|
dbtotalx.prg \
|
|
dbupdat.prg \
|
|
dbupdatx.prg \
|
|
rddord.prg \
|
|
rddordu.prg \
|
|
rddsys.prg \
|
|
|
|
LIBNAME := hbrdd
|
|
|
|
# The list of all valid DB drivers is defined in config/global.mk
|
|
DIRS = nulsys $(HB_RDD_DIRS)
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
include $(TOP)$(ROOT)config/dir.mk
|