summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwelch <welch>2000-07-13 01:08:46 (GMT)
committerwelch <welch>2000-07-13 01:08:46 (GMT)
commit76a4df192b071972197974169ebe90fee846f79d (patch)
tree1abdb534d73aabb57d741fc481cd1e84da849dd3
parent2c47ecc37be6ed8ae039311fc1100a0e8877d706 (diff)
downloadtcl-76a4df192b071972197974169ebe90fee846f79d.zip
tcl-76a4df192b071972197974169ebe90fee846f79d.tar.gz
tcl-76a4df192b071972197974169ebe90fee846f79d.tar.bz2
Added builds of the tclreg and tcldde static libraries.
-rw-r--r--win/Makefile.in12
-rw-r--r--win/tclConfig.sh.in4
2 files changed, 12 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index d03e9a9..2f3a639 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.33 2000/04/25 20:58:48 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.33.2.1 2000/07/13 01:08:46 welch Exp $
VERSION = @TCL_VERSION@
@@ -134,7 +134,7 @@ PIPE_DLL_FILE = tclpip$(VER).dll
SHARED_LIBRARIES = $(TCL_DLL_FILE) $(TCL_STUB_LIB_FILE) \
$(DDE_DLL_FILE) $(REG_DLL_FILE) $(PIPE_DLL_FILE)
-STATIC_LIBRARIES = $(TCL_LIB_FILE)
+STATIC_LIBRARIES = $(TCL_LIB_FILE) $(REG_LIB_FILE) $(DDE_LIB_FILE)
TCLSH = tclsh$(VER)${EXESUFFIX}
TCLTEST = tcltest${EXEEXT}
@@ -345,10 +345,18 @@ ${DDE_DLL_FILE}: ${DDE_OBJS} ${TCL_STUB_LIB_FILE}
@$(RM) ${DDE_DLL_FILE}
@MAKE_DLL@ ${DDE_OBJS} ${TCL_STUB_LIB_FILE}
+${DDE_LIB_FILE}: ${DDE_OBJS} ${TCL_LIB_FILE}
+ @$(RM) ${DDE_LIB_FILE}
+ @MAKE_LIB@ ${DDE_OBJS} ${TCL_LIB_FILE}
+
${REG_DLL_FILE}: ${REG_OBJS} ${TCL_STUB_LIB_FILE}
@$(RM) ${REG_DLL_FILE}
@MAKE_DLL@ ${REG_OBJS} ${TCL_STUB_LIB_FILE}
+${REG_LIB_FILE}: ${REG_OBJS} ${TCL_LIB_FILE}
+ @$(RM) ${REG_LIB_FILE}
+ @MAKE_LIB@ ${REG_OBJS} ${TCL_LIB_FILE}
+
# PIPE_DLL_FILE is actually an executable, don't build it
# like a DLL.
diff --git a/win/tclConfig.sh.in b/win/tclConfig.sh.in
index aaaee8d..d5b773b 100644
--- a/win/tclConfig.sh.in
+++ b/win/tclConfig.sh.in
@@ -9,7 +9,7 @@
#
# The information in this file is specific to a single platform.
#
-# RCS: @(#) $Id: tclConfig.sh.in,v 1.3 1999/07/29 19:21:32 wart Exp $
+# RCS: @(#) $Id: tclConfig.sh.in,v 1.3.10.1 2000/07/13 01:08:47 welch Exp $
TCL_SRC_DIR="@TCL_SRC_DIR@"
@@ -60,7 +60,7 @@ TCL_NEEDS_EXP_FILE=@TCL_NEEDS_EXP_FILE@
TCL_EXPORT_FILE_SUFFIX='@CFG_TCL_EXPORT_FILE_SUFFIX@'
# Additional libraries to use when linking Tcl.
-TCL_LIBS='@DL_LIBS@ @LIBS@ @MATH_LIBS@'
+TCL_LIBS='@LIBS@'
# Top-level directory in which Tcl's platform-independent files are
# installed.