########################################################################
#
# $Id: Makefile.in,v 1.5 2006/05/26 19:33:28 mavrik Exp $
#
########################################################################
#
# Purpose: Makefile for the project's tools directory.
#
########################################################################
#.SILENT:
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
VPATH = ${srcdir}
INSTALL = @INSTALL@
SUBDIRS = @tool_subdirs@
all test install clean:
@cwd=`pwd`; for i in ${SUBDIRS} "-end-"; do\
if test $${i} != "-end-"; then\
subdir=`basename $${cwd}`/$${i};\
echo '===>' $${subdir};\
cd $${cwd}/$${i} && ${MAKE} $@;\
fi;\
done
clean-all:
@cwd=`pwd`; for i in ${SUBDIRS} "-end-"; do\
if test $${i} != "-end-"; then\
subdir=`basename $${cwd}`/$${i};\
echo '===>' $${subdir};\
cd $${cwd}/$${i} && ${MAKE} $@;\
fi;\
done
rm -f Makefile
syntax highlighted by Code2HTML, v. 0.9.1