diff options
author | das <das> | 2005-06-03 08:53:11 (GMT) |
---|---|---|
committer | das <das> | 2005-06-03 08:53:11 (GMT) |
commit | 680a0c41fa203c90d00c1e021fcd6c04ded699cf (patch) | |
tree | d67220f2f874d918102d7c971cd35f5dc798bfd5 | |
parent | 990dc3c3dc679e98615c7d8227296f351142fde9 (diff) | |
download | tcl-680a0c41fa203c90d00c1e021fcd6c04ded699cf.zip tcl-680a0c41fa203c90d00c1e021fcd6c04ded699cf.tar.gz tcl-680a0c41fa203c90d00c1e021fcd6c04ded699cf.tar.bz2 |
* macosx/Makefile: fixed 'embedded' target.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | macosx/Makefile | 7 |
2 files changed, 8 insertions, 5 deletions
@@ -1,7 +1,11 @@ -2005-06-02 Jeff Hobbs <jeffh@ActiveState.com> +2005-06-03 Daniel Steffen <das@users.sourceforge.net> *** 8.4.10 TAGGED FOR RELEASE *** + * 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. diff --git a/macosx/Makefile b/macosx/Makefile index fe59e7b..105ac08 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -4,7 +4,7 @@ # 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.5.2.12 2005/05/26 11:19:32 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.5.2.13 2005/06/03 08:53:12 das Exp $ # ######################################################################################################## @@ -115,12 +115,11 @@ clean-${PROJECT} distclean-${PROJECT} test-${PROJECT}: \ DO_MAKE = +${MAKE} -C ${OBJ_DIR} ${target} ${MAKE_ARGS_V} ${MAKE_ARGS} ${EXTRA_MAKE_ARGS} -${PROJECT}: override INSTALL_ROOT := ${OBJ_DIR}/ - #------------------------------------------------------------------------------------------------------- # build rules -${PROJECT}: install-${PROJECT} +${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 \ |