diff options
author | das <das> | 2002-09-26 17:07:33 (GMT) |
---|---|---|
committer | das <das> | 2002-09-26 17:07:33 (GMT) |
commit | 32b1b1f7e6f65a67d4b080700b835c3d09edce65 (patch) | |
tree | 112cb862271c362e292651bcd940c53f02ab243c /unix/Makefile.in | |
parent | 34668c7563378b40e10094f94be222b167d40723 (diff) | |
download | tk-32b1b1f7e6f65a67d4b080700b835c3d09edce65.zip tk-32b1b1f7e6f65a67d4b080700b835c3d09edce65.tar.gz tk-32b1b1f7e6f65a67d4b080700b835c3d09edce65.tar.bz2 |
* macosx/Makefile: preserve environment value of INSTALL_ROOT.
When embedding only use deployment build. Force relink before
embedded build to ensure new linker flags are picked up.
* macosx/buildTkConfig.tcl (new):
* macosx/Wish.pbproj/project.pbxproj: synthesize tkConfig.sh
based on tclConfig.sh in Tcl.framework and tkConfig.sh.in.
Add symbolic links to debug lib, stub libs and tkConfig.sh
in framework toplevel. Made tkIntXlibDecls.h a public header
since Headers/X11/Xlib.h includes it. Install wish8.4 script
that runs "Wish Shell.app" and corresponding wish link.
Use tcl headers from built Tcl.framework instead of from tcl
source directory.
* macosx/tkMacOSXPort.h: added missing standard unix includes
and defines, similarly to tkUnixPort.h.
* macosx/tkMacOSXNotify.c: removed dependency on internal tcl
header "tclPort.h"
* unix/Makefile.in:
* unix/install-sh: copied support for 'install-strip' target
over from tcl/unix/{Makefile.in,install-sh}
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 1b280a7..ff40657 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.82 2002/09/10 09:59:15 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.83 2002/09/26 17:07:33 das Exp $ # Current Tk version; used in various names. @@ -172,6 +172,9 @@ SHELL = /bin/sh # "install" around; better to use the install-sh script that comes # with the distribution, which is slower but guaranteed to work. +INSTALL_STRIP_PROGRAM = -s +INSTALL_STRIP_LIBRARY = -S -S + INSTALL = @srcdir@/install-sh -c INSTALL_PROGRAM = ${INSTALL} INSTALL_LIBRARY = ${INSTALL} @@ -493,6 +496,11 @@ gdb: wish install: all install-binaries install-libraries install-demos install-doc +install-strip: + $(MAKE) install \ + INSTALL_PROGRAM="$(INSTALL_PROGRAM) ${INSTALL_STRIP_PROGRAM}" \ + INSTALL_LIBRARY="$(INSTALL_LIBRARY) ${INSTALL_STRIP_LIBRARY}" + # Note: before running ranlib below, must cd to target directory because # some ranlibs write to current directory, and this might not always be # possible (e.g. if installing as root). |