summaryrefslogtreecommitdiffstats
path: root/unix/dltest/Makefile.in
diff options
context:
space:
mode:
authormdejong <mdejong>2001-12-19 11:03:20 (GMT)
committermdejong <mdejong>2001-12-19 11:03:20 (GMT)
commit6fa623d828bea1fbaf1193b5d912548759a97b78 (patch)
treeb90b399f9db5fb2253b55170611240c628b95272 /unix/dltest/Makefile.in
parent315bd588df6de70180a2b3279c7364f742ae39c0 (diff)
downloadtcl-6fa623d828bea1fbaf1193b5d912548759a97b78.zip
tcl-6fa623d828bea1fbaf1193b5d912548759a97b78.tar.gz
tcl-6fa623d828bea1fbaf1193b5d912548759a97b78.tar.bz2
* unix/Makefile.in: Define new dltest target that
simply does a cd to dltest/ before running make. There is no need for the separate configure script that was previously being used. * unix/configure: Regen. * unix/configure.in: Subst into dltest/Makefile. * unix/dltest/Makefile.in: Define LIBS using DL_LIBS, LIBS, and MATH_LIBS variables instead of TCL_LIBS variable from tclConfig.sh. * unix/dltest/README: Update readme to account for new configure free implementation. * unix/dltest/configure: Removed. * unix/dltest/configure.in: Removed.
Diffstat (limited to 'unix/dltest/Makefile.in')
-rw-r--r--unix/dltest/Makefile.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in
index 8ed727f..5759915 100644
--- a/unix/dltest/Makefile.in
+++ b/unix/dltest/Makefile.in
@@ -1,17 +1,16 @@
# This Makefile is used to create several test cases for Tcl's load
# command. It also illustrates how to take advantage of configuration
# exported by Tcl to set up Makefiles for shared libraries.
-# RCS: @(#) $Id: Makefile.in,v 1.8 2001/11/09 10:56:36 mdejong Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.9 2001/12/19 11:03:20 mdejong Exp $
TCL_DBGX = @TCL_DBGX@
CC = @CC@
-LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @TCL_LIBS@
+LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @DL_LIBS@ @LIBS@ @MATH_LIBS@
AC_FLAGS = @EXTRA_CFLAGS@
SHLIB_CFLAGS = @SHLIB_CFLAGS@
SHLIB_LD = @SHLIB_LD@
-SHLIB_LD_LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @SHLIB_LD_LIBS@
+SHLIB_LD_LIBS = @SHLIB_LD_LIBS@
SHLIB_SUFFIX = @SHLIB_SUFFIX@
-SHLIB_VERSION = @SHLIB_VERSION@
SRC_DIR = @srcdir@
TCL_VERSION= @TCL_VERSION@