##############################################################################
# This file is part of a software distribution, which is furnished under the #
# terms of a license. Use of this software by any means is subject to this #
# license and signifies the acceptance of the licensing terms stated #
# therein. Please see the file LICENSE in the top-level directory of this #
# software distribution for detailed copyright disclaimers and licensing #
# terms. #
##############################################################################
# Copryight (c) by Andreas S. Wetzel - All rights reserved. #
##############################################################################
# $Id: Makefile.in,v 1.2 2001/03/19 14:54:00 mickey Exp $
SHELL = @SHELL@
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
SUBDIRS = src
SUBTARGS = all depend install clean
DISTCLNFILES = config.cache \
config.log \
config.status \
confdefs.h \
Makefile \
src/Makefile \
src/common/include/config.h \
src/common/Makefile \
src/vchat/Makefile \
src/vchatd/Makefile
DEVELCLNFILES = configure \
src/common/include/config.h.in
.NOTPARALLEL:
${SUBTARGS}:
@for i in ${SUBDIRS}; do \
cd $$i ; \
echo "making $@ in $$i" ; \
$(MAKE) $@ ; \
cd .. ; \
done
${srcdir}/configure: configure.in
cd ${srcdir} && autoconf
${srcdir}/config.h.in: stamp-h.in
${srcdir}/stamp-h.in: configure.in
cd ${srcdir} && autoheader
echo timestamp > ${srcdir}/stamp-h.in
config.h: stamp-h
stamp-h: config.h.in config.status
./config.status
Makefile: Makefile.in config.status
./config.status
config.status: configure
./config.status --recheck
distclean:
(cd ${srcdir} ; ${MAKE} clean)
rm -f ${DISTCLNFILES}
develclean: distclean
rm -f ${DEVELCLNFILES}
syntax highlighted by Code2HTML, v. 0.9.1