dnl Configure the Autoconf Macro Archive dnl dnl Copyright (c) 2006 by Peter Simons . dnl Licensed under the terms of the GNU General Public License. AC_INIT([autoconf-archive], [2007-07-26], [simons@cryp.to]) AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2]) AC_CONFIG_SRCDIR([html/autoconf-archive.css]) AC_MSG_CHECKING([for available Autoconf macros]) M4SOURCE="" for n in ${srcdir}/m4/*.m4 ; do M4SOURCE="${M4SOURCE} ${n}" done AC_SUBST([M4SOURCE]) AC_MSG_RESULT([done]) AC_MSG_CHECKING([for available documentation]) HTMLDOC="" for n in ${srcdir}/html/*.html ${srcdir}/html/*.css ; do HTMLDOC="${HTMLDOC} ${n}" done AC_SUBST([HTMLDOC]) AC_MSG_RESULT([done]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT