ChangeLogTag:Fri Oct 15 16:42:30 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>

This commit is contained in:
Gonzalo A. Diethelm
1999-10-15 19:56:09 +00:00
parent 8f1e9b554a
commit fa09ec5d16
12 changed files with 30 additions and 11 deletions

View File

@@ -1,3 +1,22 @@
Fri Oct 15 16:42:30 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* config/lib.cf:
* source/debug/Makefile:
* source/pp/Makefile:
* source/rdd/Makefile:
* source/rdd/dbfcdx/Makefile:
* source/rdd/dbfntx/Makefile:
* source/rdd/nulsys/Makefile:
* source/rtl/Makefile:
* source/runner/Makefile:
* source/tools/Makefile:
* source/vm/Makefile:
Now Makefiles that will create a library use LIBNAME for the
library's name; the LIB variable is not used anymore, so it will
not conflict with the widely used environment variable with that
name. Thanks to Paul Tucker <ptucker@sympatico.ca> for pointing
this out.
19991015-18:45 GMT+1 Bruno Cantero <bruno@issnet.net>
* source/rdd/dbcmd.c
* Bug removed, default alias work if not alias and extension is specified.

View File

@@ -6,7 +6,7 @@ include $(TOP)$(ROOT)config/global.cf
include $(TOP)$(ROOT)config/c.cf
include $(TOP)$(ROOT)config/prg.cf
LIB_NAME := $(LIB_PREF)$(LIB)$(LIB_EXT)
LIB_NAME := $(LIB_PREF)$(LIBNAME)$(LIB_EXT)
LIB_ARCH := $(notdir $(ARCH_DIR))
ifeq ($(LIB_ARCH),)

View File

@@ -8,6 +8,6 @@ PRG_SOURCES=\
debugger.prg \
tbrwtext.prg
LIB=debug
LIBNAME=debug
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -10,7 +10,7 @@ C_SOURCES=\
hbpplib.c \
table.c \
LIB=pp
LIBNAME=pp
DIRS=\
stdalone \

View File

@@ -16,7 +16,7 @@ PRG_SOURCES=\
delim0.prg \
rddsys.prg \
LIB=rdd
LIBNAME=rdd
# The list of all valid DB drivers is defined in config/global.cf.
DIRS=$(HB_DB_DRIVERS)

View File

@@ -10,6 +10,6 @@ C_SOURCES=\
PRG_SOURCES=\
dbfcdx0.prg \
LIB=dbfcdx
LIBNAME=dbfcdx
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -10,6 +10,6 @@ C_SOURCES=\
PRG_SOURCES=\
dbfntx0.prg \
LIB=dbfntx
LIBNAME=dbfntx
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -9,6 +9,6 @@ C_SOURCES=\
PRG_SOURCES=\
nulsys.prg \
LIB=nulsys
LIBNAME=nulsys
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -74,6 +74,6 @@ PRG_SOURCES=\
wait.prg \
xsavescr.prg \
LIB=rtl
LIBNAME=rtl
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -7,7 +7,7 @@ ROOT = ../../
C_SOURCES=\
runlib.c \
LIB=runner
LIBNAME=runner
DIRS=\
stdalone \

View File

@@ -37,6 +37,6 @@ PRG_SOURCES=\
numtxten.prg \
stringp.prg \
LIB=tools
LIBNAME=tools
include $(TOP)$(ROOT)config/lib.cf

View File

@@ -12,6 +12,6 @@ C_SOURCES=\
initsymb.c \
main.c \
LIB=vm
LIBNAME=vm
include $(TOP)$(ROOT)config/lib.cf