Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | * macosx/Makefile: fixed 'embedded' target. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ed94bc6122b5ce8cdbff16377bec33bf |
| User & Date: | das 2005-06-03 08:52:13.000 |
Context
|
2005-06-03
| ||
| 10:02 | Remove blatant inefficiency in [parray] check-in: 602628a115 user: dkf tags: trunk | |
| 08:52 | * macosx/Makefile: fixed 'embedded' target. check-in: ed94bc6122 user: das tags: trunk | |
|
2005-06-02
| ||
| 22:56 | * unix/Makefile.in (html): add BUILD_HTML_FLAGS optional var * tools/tcltk-man2html.tcl: add a --u... check-in: af56fb84a6 user: hobbs tags: trunk | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 | 2005-06-02 Jeff Hobbs <jeffh@ActiveState.com> * unix/Makefile.in (html): add BUILD_HTML_FLAGS optional var * tools/tcltk-man2html.tcl: add a --useversion to prevent confusion when multiple Tcl source dirs exist. 2005-06-01 Don Porter <dgp@users.sourceforge.net> | > > > > | 1 2 3 4 5 6 7 8 9 10 11 | 2005-06-03 Daniel Steffen <das@users.sourceforge.net> * macosx/Makefile: fixed 'embedded' target. 2005-06-02 Jeff Hobbs <jeffh@ActiveState.com> * unix/Makefile.in (html): add BUILD_HTML_FLAGS optional var * tools/tcltk-man2html.tcl: add a --useversion to prevent confusion when multiple Tcl source dirs exist. 2005-06-01 Don Porter <dgp@users.sourceforge.net> |
| ︙ | ︙ |
Changes to macosx/Makefile.
1 2 3 4 5 6 | ######################################################################################################## # # Makefile wrapper to build tcl on Mac OS X in a way compatible with the tk/macosx Xcode buildsystem # uses the standard unix build system in tcl/unix (which can be used directly instead of this # if you are not using the tk/macosx projects). # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ######################################################################################################## # # Makefile wrapper to build tcl on Mac OS X in a way compatible with the tk/macosx Xcode buildsystem # uses the standard unix build system in tcl/unix (which can be used directly instead of this # if you are not using the tk/macosx projects). # # RCS: @(#) $Id: Makefile,v 1.22 2005/06/03 08:52:16 das Exp $ # ######################################################################################################## #------------------------------------------------------------------------------------------------------- # customizable settings DESTDIR ?= |
| ︙ | ︙ | |||
112 113 114 115 116 117 118 |
build-${PROJECT}: target = ${TARGET}
install-${PROJECT}: target = ${INSTALL_TARGET}
clean-${PROJECT} distclean-${PROJECT} test-${PROJECT}: \
target = $*
DO_MAKE = +${MAKE} -C ${OBJ_DIR} ${target} ${MAKE_ARGS_V} ${MAKE_ARGS} ${EXTRA_MAKE_ARGS}
| < < | > | 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
build-${PROJECT}: target = ${TARGET}
install-${PROJECT}: target = ${INSTALL_TARGET}
clean-${PROJECT} distclean-${PROJECT} test-${PROJECT}: \
target = $*
DO_MAKE = +${MAKE} -C ${OBJ_DIR} ${target} ${MAKE_ARGS_V} ${MAKE_ARGS} ${EXTRA_MAKE_ARGS}
#-------------------------------------------------------------------------------------------------------
# build rules
${PROJECT}:
${MAKE} install-${PROJECT} INSTALL_ROOT=${OBJ_DIR}/
${OBJ_DIR}/Makefile: ${UNIX_DIR}/Makefile.in ${UNIX_DIR}/configure
mkdir -p ${OBJ_DIR} && cd ${OBJ_DIR} && ${UNIX_DIR}/configure -C \
--prefix=${PREFIX} --bindir=${BINDIR} --libdir=${LIBDIR} \
--mandir=${MANDIR} --enable-threads --enable-framework \
${CONFIGURE_ARGS} ${EXTRA_CONFIGURE_ARGS}
|
| ︙ | ︙ |