summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordas <das>2006-04-12 00:58:44 (GMT)
committerdas <das>2006-04-12 00:58:44 (GMT)
commitabd76b7c759e2503515db98906ea7581295b82c7 (patch)
tree16eccd169a2a83bb80dd6e0ce8a9710133bd2570 /macosx
parenta585fdbbd3d3ab32d8f3e97b5c2834fc0961f204 (diff)
downloadtk-abd76b7c759e2503515db98906ea7581295b82c7.zip
tk-abd76b7c759e2503515db98906ea7581295b82c7.tar.gz
tk-abd76b7c759e2503515db98906ea7581295b82c7.tar.bz2
fix to 'embedded' targets & cosmetic fix to 'install' targets
CCVS: ----------------------------------------------------------------------
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/macosx/Makefile b/macosx/Makefile
index e73780c..0f52d38 100644
--- a/macosx/Makefile
+++ b/macosx/Makefile
@@ -4,7 +4,7 @@
# uses the standard unix build system in tk/unix (which can be used directly instead of this
# if you are not using the tk/macosx projects).
#
-# RCS: @(#) $Id: Makefile,v 1.7.2.13 2006/01/10 05:38:19 das Exp $
+# RCS: @(#) $Id: Makefile,v 1.7.2.14 2006/04/12 00:58:44 das Exp $
#
########################################################################################################
@@ -179,6 +179,7 @@ endif
build-${PROJECT}: ${OBJ_DIR}/Makefile
${DO_MAKE}
+ifeq (${INSTALL_BUILD},)
# symolic link hackery to trick
# 'make install INSTALL_ROOT=${OBJ_DIR}'
# into building Tk.framework and wish in ${SYMROOT}
@@ -192,6 +193,7 @@ endif
# Create symbolic link to Tcl.framework in ${SYMROOT}if necessary
@cd ${SYMROOT} && if [ ! -e Tcl.framework -o -L Tcl.framework ]; then \
rm -f Tcl.framework && ln -s ${TCL_FRAMEWORK_DIR}/Tcl.framework . ; fi
+endif
install-${PROJECT}: build-${PROJECT}
ifeq (${EMBEDDED_BUILD}_${INSTALL_ROOT},1_)
@@ -248,8 +250,8 @@ else
ln -fsh Wish.app "./${APP_DIR}/Wish Shell.app" && \
rm -rf "./${APP_DIR}/Wish.app/Contents/Frameworks" && \
mkdir -p "./${APP_DIR}/Wish.app/Contents/Frameworks" && \
- mv -f "./${FMWK_DIR}"/T{cl,k}.framework "./${APP_DIR}/Wish.app/Contents/Frameworks" && \
- rmdir -p "./${FMWK_DIR}" 2>&- || true && cd "./${APP_DIR}/Wish.app/Contents" && \
+ ${CPPROG} -RH "./${FMWK_DIR}"/T{cl,k}.framework "./${APP_DIR}/Wish.app/Contents/Frameworks" && \
+ cd "./${APP_DIR}/Wish.app/Contents" && \
rm -rf Frameworks/Tcl.framework/{,/Versions/$(TCL_VERSION)}/{Headers,PrivateHeaders,*_debug,lib*.a,*Config.sh} && \
rm -rf Frameworks/Tk.framework/{,/Versions/$(VERSION)}/{Headers,PrivateHeaders,*_debug,lib*.a,*Config.sh} && \
fix_install_id ( ) { \
@@ -264,6 +266,9 @@ else
} && \
fix_install_id Frameworks/Tcl.framework/Tcl Tcl && fix_install_id Frameworks/Tk.framework/Tk Tk && \
fix_install_name MacOS/Wish Tcl && fix_install_name MacOS/Wish Tk
+ifeq (${INSTALL_BUILD},1)
+ @cd ${TOP_DIR} && rm -rf "./${FMWK_DIR}"/T{cl,k}.framework && rmdir -p "./${FMWK_DIR}" 2>&- || true
+endif
endif
endif