diff options
author | das <das> | 2002-09-10 09:57:42 (GMT) |
---|---|---|
committer | das <das> | 2002-09-10 09:57:42 (GMT) |
commit | da6130923a43f8b2a4d9bfb93e79b0960130525a (patch) | |
tree | 2f855788a07a1ff928ef9d837440d47d934a62bf /macosx/Makefile | |
parent | 4aef9a98da255c332b47645bdebb221d2c1b6bba (diff) | |
download | tcl-da6130923a43f8b2a4d9bfb93e79b0960130525a.zip tcl-da6130923a43f8b2a4d9bfb93e79b0960130525a.tar.gz tcl-da6130923a43f8b2a4d9bfb93e79b0960130525a.tar.bz2 |
* unix/Makefile.in: added DYLIB_INSTALL_DIR variable for macosx
and set it to default value ${LIB_RUNTIME_DIR}
* unix/tcl.m4 (Darwin): use DYLIB_INSTALL_DIR instead of
LIB_RUNTIME_DIR in the -install_name argument to ld.
* unix/configure: regen.
* macosx/Tcl.pbproj/project.pbxproj:
* macosx/Makefile: added support for building Tcl as an embedded
framework, i.e. using an dyld install_name containing
@executable_path/../Frameworks via the new DYLIB_INSTALL_DIR
unix/Makefile variable.
Diffstat (limited to 'macosx/Makefile')
-rw-r--r-- | macosx/Makefile | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/macosx/Makefile b/macosx/Makefile index 050f482..529e2f5 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -3,7 +3,7 @@ # Simple makefile for building on Mac OS X with the # Project Builder command line tool 'pbxbuild' # -# RCS: @(#) $Id: Makefile,v 1.2 2002/08/31 06:09:45 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.3 2002/09/10 09:57:44 das Exp $ # ################################################################################ @@ -25,12 +25,18 @@ DEPBUILD = ${BUILD} -buildstyle "${DEPBUILDSTYLE}" INSTALLOPTS = INSTALL_ROOT="${INSTALL_ROOT}" +EMBEDDEDOPTS = DYLIB_INSTALL_PATH="@executable_path/../Frameworks" + ################################################################################ all: develop deploy install: install-develop install-deploy +embedded: embedded-develop embedded-deploy + +install-embedded: install-embedded-develop install-embedded-deploy + clean: clean-develop clean-deploy ################################################################################ @@ -47,6 +53,18 @@ install-develop: install-deploy: ${DEPBUILD} install ${INSTALLOPTS} +embedded-develop: + ${DEVBUILD} ${EMBEDDEDOPTS} + +embedded-deploy: + ${DEPBUILD} ${EMBEDDEDOPTS} + +install-embedded-develop: + ${DEVBUILD} install ${INSTALLOPTS} ${EMBEDDEDOPTS} + +install-embedded-deploy: + ${DEPBUILD} install ${INSTALLOPTS} ${EMBEDDEDOPTS} + clean-develop: ${DEVBUILD} clean |