diff options
author | mdejong <mdejong> | 2002-07-16 22:44:42 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-07-16 22:44:42 (GMT) |
commit | e46c639416a00a4f912e570ce4609ae79b10a447 (patch) | |
tree | c9beb615e2e6295797502be11dc9c58c43c9102c /unix/Makefile.in | |
parent | 997cbc8e44adfb82f296221d13d45f79714f745b (diff) | |
download | tcl-e46c639416a00a4f912e570ce4609ae79b10a447.zip tcl-e46c639416a00a4f912e570ce4609ae79b10a447.tar.gz tcl-e46c639416a00a4f912e570ce4609ae79b10a447.tar.bz2 |
* unix/Makefile.in: Use dltest.marker file
to keep track of when the dltest package
is up to date. This fixes [Tcl bug 575768]
since tcltest is no longer linked every time.
* unix/dltest/Makefile.in: Create ../dltest.marker
after a successful `make all` run in dltest.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index bb2b999..9e33e45 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.105 2002/07/05 10:38:43 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.106 2002/07/16 22:44:43 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -194,7 +194,7 @@ SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_SUFFIX = @SHLIB_SUFFIX@ #SHLIB_SUFFIX = -DLTEST_TARGETS = dlpkgs +DLTEST_TARGETS = dltest.marker # The following symbol is defined to "$(DLTEST_TARGETS)" if dynamic # loading is available; this causes everything in the "dltest" @@ -560,12 +560,13 @@ gendate: <y.tab.c >$(GENERIC_DIR)/tclDate.c rm y.tab.c -# The following targets generate the shared libraries in dltest/ that +# The following target generates the shared libraries in dltest/ that # are used for testing; they are included as part of the "tcltest" # target (via the BUILD_DLTEST variable) if dynamic loading is supported -# on this platform. +# on this platform. The Makefile in the dltest subdirectory creates +# the dltest.marker file in this directory after a successful build. -dlpkgs: +dltest.marker: cd dltest ; $(MAKE) install: install-binaries install-libraries install-doc |