diff options
author | das <das> | 2003-11-04 09:36:45 (GMT) |
---|---|---|
committer | das <das> | 2003-11-04 09:36:45 (GMT) |
commit | 9f0235b154c23e8eefeb9005acb58abe0c2415f4 (patch) | |
tree | 04a8179f3ab3322467d1734763a938fe4e3dc6f7 | |
parent | 60fa96585cee84cfc8834308fdf455708f0a9174 (diff) | |
download | tcl-9f0235b154c23e8eefeb9005acb58abe0c2415f4.zip tcl-9f0235b154c23e8eefeb9005acb58abe0c2415f4.tar.gz tcl-9f0235b154c23e8eefeb9005acb58abe0c2415f4.tar.bz2 |
* macosx/Makefile: added 'test' target.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | macosx/Makefile | 11 |
2 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2003-11-04 Daniel Steffen <das@users.sourceforge.net> + + * macosx/Makefile: added 'test' target. + 2003-11-03 Vince Darley <vincentdarley@users.sourceforge.net> * generic/tclIOUtil.c diff --git a/macosx/Makefile b/macosx/Makefile index c4e3b71..ed5441e 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -3,7 +3,7 @@ # 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.9 2003/10/01 14:33:49 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.10 2003/11/04 09:36:45 das Exp $ # ######################################################################################################## @@ -35,7 +35,7 @@ TCL_PACKAGE_PATH ?= "~/Library/Tcl /Library/Tcl /Network/Library/Tcl /System/Lib #------------------------------------------------------------------------------------------------------- # meta targets -meta := all install embedded install-embedded clean distclean +meta := all install embedded install-embedded clean distclean test styles := develop deploy @@ -58,6 +58,10 @@ distclean := ${styles:%=distclean-%} distclean : ${distclean} distclean-%: action := distclean- +test := ${styles:%=test-%} +test : ${test} +test-%: action := test- + targets := $(foreach v,${meta},${$v}) #------------------------------------------------------------------------------------------------------- @@ -143,6 +147,9 @@ distclean-${PROJECT}: ${MAKE} -C ${OBJ_DIR} distclean ${EXTRA_MAKE_ARGS} rm -rf ${OBJ_DIR} ${PRODUCT_NAME}.framework tclsh${PRODUCT_VERSION} tcltest +test-${PROJECT}: build-${PROJECT} + ${MAKE} -C ${OBJ_DIR} test ${EXTRA_MAKE_ARGS} + install-${PROJECT}: build-${PROJECT} # install to ${INSTALL_ROOT} with optional stripping ${MAKE} -C ${OBJ_DIR} install-binaries install-libraries \ |