summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-18 15:48:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-18 15:48:13 +0000
commit5802d12bd258f45cdb8c8b23222e0e1d96ce067f (patch)
tree75458e4e7bf74f79f8ed0ddc18fd92bebf39e8a0
parent2002-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-5802d12bd258f45cdb8c8b23222e0e1d96ce067f.tar.bz2
2002-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Require automake-1.5.
-rw-r--r--doc/tools/configure.ac32
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/tools/configure.ac b/doc/tools/configure.ac
new file mode 100644
index 0000000000..aa4fc2ffd2
--- /dev/null
+++ b/doc/tools/configure.ac
@@ -0,0 +1,32 @@
+dnl Process this file with autoconf to produce a configure script.
+dnl NOTE: This is a very coarse port to automake
+AC_PREREQ(2.13)
+
+AC_INIT(word-replace2)
+
+AM_INIT_AUTOMAKE(rtemsdoc-tools,0.0.0,no)
+dnl Checks for programs.
+AC_PROG_CC
+
+dnl Checks for libraries.
+
+dnl Checks for header files.
+AC_HEADER_STDC
+AC_CHECK_HEADERS(limits.h)
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+dnl Checks for library functions.
+AC_CHECK_FUNCS(strdup strstr)
+
+AC_OUTPUT(
+Makefile
+bmenu/Makefile
+src2html/Makefile
+src2html1.4a/Makefile
+src2html1.4a/Ctags/Makefile
+src2html1.4a/FreeBSD/Makefile
+src2html1.4a/ctags-emacs/Makefile
+pdl2texi/Makefile
+texi2www/Makefile
+)