diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-18 15:24:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-18 15:24:46 (GMT) |
commit | 6f3dea45cee94f12ffa0b2acbbdb3eedbc01807b (patch) | |
tree | fc8ae9a37fc63e2e0ffc6cc80c5454040f7cb58c /unix/Makefile.in | |
parent | 3b695df22581e947dcf17c31c4ef9ea27b04fd57 (diff) | |
download | tcl-6f3dea45cee94f12ffa0b2acbbdb3eedbc01807b.zip tcl-6f3dea45cee94f12ffa0b2acbbdb3eedbc01807b.tar.gz tcl-6f3dea45cee94f12ffa0b2acbbdb3eedbc01807b.tar.bz2 |
Autoconf wizardry!
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 83b5008..5d4adc2 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.251 2008/12/17 17:23:10 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.252 2008/12/18 15:24:46 dkf Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -232,6 +232,10 @@ DLTEST_DIR = @TCL_SRC_DIR@/unix/dltest # Must be absolute to so the corresponding tcltest's tcl_library is absolute. TCL_BUILDTIME_LIBRARY = @TCL_SRC_DIR@/library +ZLIB_DIR = @ZLIB_DIR@ +ZLIB_LIBRARY = @ZLIB_DIR@@ZLIB_LIB@ +ZLIB_LIB = @ZLIB_LIB@ + CC = @CC@ #CC = purify -best-effort @CC@ -DPURIFY @@ -566,7 +570,7 @@ doc: # The following target is configured by autoconf to generate either a shared # library or non-shared library for Tcl. -${LIB_FILE}: ${OBJS} ${STUB_LIB_FILE} +${LIB_FILE}: ${OBJS} ${STUB_LIB_FILE} ${ZLIB_DIR}${ZLIB_LIB} rm -f $@ @MAKE_LIB@ @@ -574,6 +578,9 @@ ${STUB_LIB_FILE}: ${STUB_LIB_OBJS} rm -f $@ @MAKE_STUB_LIB@ +${ZLIB_DIR}${ZLIB_LIB}: + cd ${ZLIB_DIR}; ${MAKE} ${ZLIB_LIB} + # Make target which outputs the list of the .o contained in the Tcl lib useful # to build a single big shared library containing Tcl and other extensions. # Used for the Tcl Plugin. -- dl |