aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2005-12-23 20:39:29 +0000
committerBen Elliston <bje@gnu.org>2005-12-23 20:39:29 +0000
commit7f69ac779dd79b8123b5691bc22f9797e8d04144 (patch)
treefd44b8d5dc25779cb2afea663c17ed2813a2612d /configure.ac
parent2cc41b2497c06224ad177d7b389c4d9d8d793ada (diff)
downloaddejagnu-7f69ac779dd79b8123b5691bc22f9797e8d04144.zip
dejagnu-7f69ac779dd79b8123b5691bc22f9797e8d04144.tar.gz
dejagnu-7f69ac779dd79b8123b5691bc22f9797e8d04144.tar.bz2
* Makefile.am (SUBDIRS): Remove.
(EXTRA_DIST): Append $(XML). (dist_man_MANS): Define. (info_TEXINFOS): Likewise. (XML): List XML source files. (dejagnu.pdf): New target. (dejagnu.ps): Likewise. (dejagnu.rtf): Likewise. (html): Likewise. (dejagnu.texi): Special rule to build Texinfo source. * Makefile.in: Regenerate. * configure.ac: Don't search for docbook2dvi. Search for docbook2rtf and docbook2pdf. Don't output doc/Makefile or doc/C/Makefile. * configure: Regenerate. * doc/texinfo.tex: Move from here .. * texinfo.tex: .. to here. * doc/Makefile.am: Remove. * doc/Makefile.in: Likewise. * doc/C/dejagnu.omf: Likewise. * doc/C/topic.dat: Likewise. * doc/C/dejagnu.xml: Move from here .. * doc/dejagnu.xml: .. to here. * doc/C/legal.xml: Move from here .. * doc/legal.xml: .. to here. * doc/C/ref.xml: Move from here .. * doc/ref.xml: .. to here. * doc/C/user.xml: Move from here .. * doc/user.xml: .. to here. * doc/dejagnu.texi: Rebuild from XML source.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index d8a9b11..64e50ed 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,9 +12,10 @@ AC_PROG_INSTALL
AC_EXEEXT
dnl Search for the Docbook utilities.
-AC_PATH_PROG([DOCBOOK2DVI], [docbook2dvi], [false])
-AC_PATH_PROG([DOCBOOK2PDF], [docbook2pdf], [false])
AC_PATH_PROG([DOCBOOK2HTML], [docbook2html], [false])
+AC_PATH_PROG([DOCBOOK2RTF], [docbook2rtf], [false])
+AC_PATH_PROG([DOCBOOK2PDF], [docbook2pdf], [false])
+AC_PATH_PROG([DOCBOOK2PS], [docbook2ps], [false])
dnl Search for expect.
AC_PATH_PROG([EXPECT], [expect])
@@ -36,5 +37,4 @@ else
fi
AC_CONFIG_SUBDIRS([example/calc example/hello example/mathhelper])
-
-AC_OUTPUT([Makefile doc/Makefile doc/C/Makefile])
+AC_OUTPUT([Makefile])