Differences From Artifact [36f6884b11]:
- File macosx/Makefile — part of check-in [277d0da04b] at 2004-02-26 09:10:40 on branch core-8-4-branch — * macosx/Makefile: fixed copyright year in Tcl.framework Info.plist (user: das size: 8968)
To Artifact [351e4b08f9]:
- File macosx/Makefile — part of check-in [c980caa33c] at 2004-11-11 01:17:07 on branch core-8-4-branch — * macosx/Makefile: corrected path to html help inside framework. Prevent parallel make from building several targets at the same time. (user: das size: 8969)
1 2 3 4 5 | ######################################################################################################## # # Makefile to build Tcl on Mac OS X packaged as a Framework # uses standard unix build system in tcl/unix # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | ######################################################################################################## # # Makefile to build Tcl on Mac OS X packaged as a Framework # uses standard unix build system in tcl/unix # # RCS: @(#) $Id: Makefile,v 1.5.2.9 2004/11/11 01:17:07 das Exp $ # ######################################################################################################## #------------------------------------------------------------------------------------------------------- # customizable settings DESTDIR ?= |
| ︙ | ︙ | |||
103 104 105 106 107 108 109 |
TCL_LIBRARY := @TCL_IN_FRAMEWORK@
LIBDIR := ${INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${PRODUCT_VERSION}
DYLIB_INSTALL_DIR := ${DYLIB_INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${PRODUCT_VERSION}
INCLUDEDIR := ${LIBDIR}/Headers
PRIVATEINCLUDEDIR := ${LIBDIR}/PrivateHeaders
SCRIPTDIR := ${LIBDIR}/Resources/Scripts
| | | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
TCL_LIBRARY := @TCL_IN_FRAMEWORK@
LIBDIR := ${INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${PRODUCT_VERSION}
DYLIB_INSTALL_DIR := ${DYLIB_INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${PRODUCT_VERSION}
INCLUDEDIR := ${LIBDIR}/Headers
PRIVATEINCLUDEDIR := ${LIBDIR}/PrivateHeaders
SCRIPTDIR := ${LIBDIR}/Resources/Scripts
DOCDIR := ${LIBDIR}/Resources/Documentation/Reference
INFOPLIST := ${LIBDIR}/Resources/Info.plist
BUILD_STYLE =
OBJ_DIR = ${OBJROOT}/${BUILD_STYLE}
${PROJECT}: override INSTALL_ROOT = ${OBJ_DIR}/
|
| ︙ | ︙ | |||
231 232 233 234 235 236 237 238 239 |
</dict>\n\
</plist>\n'
#-------------------------------------------------------------------------------------------------------
.PHONY: ${meta} ${targets} ${PROJECT} build-${PROJECT} install-${PROJECT} \
clean-${PROJECT} distclean-${PROJECT}
#-------------------------------------------------------------------------------------------------------
| > > | 231 232 233 234 235 236 237 238 239 240 241 |
</dict>\n\
</plist>\n'
#-------------------------------------------------------------------------------------------------------
.PHONY: ${meta} ${targets} ${PROJECT} build-${PROJECT} install-${PROJECT} \
clean-${PROJECT} distclean-${PROJECT}
.NOTPARALLEL:
#-------------------------------------------------------------------------------------------------------
|