summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-09-19 00:53:36 +0200
committerPeter Simons <simons@cryp.to>2009-09-19 01:25:17 +0200
commit6d8c4e34059ec356831c32b4fb9905a797e7d8fb (patch)
tree070a9a1f438c06e18b8ddc66ede4cf5c72b763e4 /configure.ac
parentfe53369c3a71093306fdf132e2f622f36b97fdb9 (diff)
downloadautoconf-archive-6d8c4e34059ec356831c32b4fb9905a797e7d8fb.tar.gz
Integrated Texinfo documentation into the Automake build.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 11 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 0b43b7a..ebedc49 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ dnl configure the Autoconf Archive
AC_INIT([autoconf-archive], m4_esyscmd([build-aux/git-version-gen .tarball-version]), [autoconf-archive-maintainers@nongnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wall gnu dist-bzip2 dist-xz])
-AC_CONFIG_SRCDIR([m4/ax_have_epoll.m4])
+AC_CONFIG_SRCDIR([autoconf-archive.texi])
AC_COPYRIGHT([dnl
Compilation Copyright 2009 by Peter Simons <simons@cryp.to>
@@ -27,14 +27,22 @@ done
AC_SUBST([M4SOURCE])
AC_MSG_RESULT([done])
-AC_MSG_CHECKING([for available documentation])
+AC_MSG_CHECKING([for available HTML documentation])
HTMLFILE=""
-for n in ${srcdir}/html/*.* ; do
+for n in ${srcdir}/html/*.html ${srcdir}/html/*.css ; do
HTMLFILE="${HTMLFILE} ${n}"
done
AC_SUBST([HTMLFILE])
AC_MSG_RESULT([done])
+AC_MSG_CHECKING([for available Texinfo documentation])
+TEXIFILE=""
+for n in ${srcdir}/doc/*.texi ; do
+ TEXIFILE="${TEXIFILE} ${n}"
+done
+AC_SUBST([TEXIFILE])
+AC_MSG_RESULT([done])
+
AC_CONFIG_FILES([Makefile])
AC_OUTPUT