+ harbour/include/hbrddnsx.h
+ harbour/source/rdd/dbfnsx
+ harbour/source/rdd/dbfnsx/dbfnsx1.c
+ harbour/source/rdd/dbfnsx/Makefile
* harbour/config/global.cf
* harbour/make_b32.mak
* harbour/make_vc.mak
* harbour/make_gcc.mak
* harbour/common.mak
+ added new DBFNSX RDD. Those of you who knows SIX3 should also
know NSX index format. It's very interesting format and in some
cases much better then CDX. I hope you will find it interesting.
In hbrddnsx.h you can find detail information about Harbour NSX
implementation.
It's a small gift from me for Christmas ;-)
I would like to wish all of you Marry Christmas and Happy new Year.
best regards,
Przemek
47 lines
654 B
CFEngine3
47 lines
654 B
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
GRANDP = ../../
|
|
HB_ARCH := $(HB_ARCHITECTURE)/$(HB_COMPILER)
|
|
|
|
#names of valid RDD libraries
|
|
HB_DB_DRIVERS=\
|
|
rddntx \
|
|
rddnsx \
|
|
rddcdx \
|
|
rddfpt \
|
|
hbsix \
|
|
hbhsx \
|
|
hbusrrdd \
|
|
|
|
#names of valid RDD subdirectories
|
|
HB_DB_DIRS=\
|
|
dbfntx \
|
|
dbfnsx \
|
|
dbfcdx \
|
|
dbffpt \
|
|
hbsix \
|
|
hsx \
|
|
usrrdd \
|
|
|
|
|
|
ifneq ($(HB_DB_DRVEXT),)
|
|
HB_DB_DRIVERS += $(HB_DB_DRVEXT)
|
|
HB_DB_DIRS += $(HB_DB_DRVEXT)
|
|
endif
|
|
|
|
ifeq ($(HB_BIN_COMPILE),)
|
|
HB_BIN_COMPILE := $(TOP)$(ROOT)source/main/$(HB_ARCH)
|
|
endif
|
|
|
|
ifeq ($(HB_INC_COMPILE),)
|
|
HB_INC_COMPILE := $(TOP)$(ROOT)include
|
|
endif
|
|
|
|
ifeq ($(HB_LIB_COMPILE),)
|
|
HB_LIB_COMPILE :=
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/$(HB_ARCH).cf
|