From: Ben Elliston Date: Fri, 8 Jan 1999 17:05:35 +0000 (+0000) Subject: 1999-01-09 Ben Elliston X-Git-Tag: experimental-branchpoint~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cbe5e94bea205013739f995d396aa3a3e995737;p=thirdparty%2Fautoconf.git 1999-01-09 Ben Elliston * Makefile.in (html): New target. Generate HTML documentation. Contributed by Wilfredo Sanchez . --- diff --git a/ChangeLog b/ChangeLog index 3902c191..4a4d891b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-01-09 Ben Elliston + * Makefile.in (html): New target. Generate HTML documentation. + Contributed by Wilfredo Sanchez . + * autoconf.texi (AC_CHECK_LIB): Explain more. Contributed by Bob Friesenhahn . (UPDATED): Bump to 1999. diff --git a/Makefile.in b/Makefile.in index a6c94d45..00e3d1e9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,6 +26,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ MAKEINFO = makeinfo TEXI2DVI = texi2dvi +TEXI2HTML = texi2html M4 = @M4@ AWK = @AWK@ PERL = @PERL@ @@ -127,6 +128,14 @@ autoconf.dvi: autoconf.texi standards.dvi: standards.texi make-stds.texi $(TEXI2DVI) $(srcdir)/standards.texi +html: autoconf_1.html standards_1.html + +autoconf_1.html: autoconf.texi + $(TEXI2HTML) -split_chapter $(srcdir)/autoconf.texi + +standards_1.html: standards.texi + $(TEXI2HTML) -split_chapter $(srcdir)/standards.texi + check: all rootme=`pwd`; srcrootme=`cd $(srcdir); pwd`; \ test -r install-sh || cp $(srcdir)/install-sh .; \ @@ -157,6 +166,9 @@ install: all $(M4FILES) acconfig.h installdirs install-info done; \ else :; fi +install-strip: + $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install + # Don't cd, to avoid breaking install-sh references. install-info: info installdirs if test -f autoconf.info; then \ @@ -191,7 +203,7 @@ config.status: configure maintainer-clean:: @echo "This command is intended for maintainers to use;" @echo "rebuilding the deleted files requires makeinfo." - rm -f TAGS *.info* INSTALL + rm -f TAGS *.html* *.info* INSTALL clean mostlyclean distclean maintainer-clean:: for dir in $(SUBDIRS); do \ diff --git a/doc/Makefile.in b/doc/Makefile.in index a6c94d45..00e3d1e9 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -26,6 +26,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ MAKEINFO = makeinfo TEXI2DVI = texi2dvi +TEXI2HTML = texi2html M4 = @M4@ AWK = @AWK@ PERL = @PERL@ @@ -127,6 +128,14 @@ autoconf.dvi: autoconf.texi standards.dvi: standards.texi make-stds.texi $(TEXI2DVI) $(srcdir)/standards.texi +html: autoconf_1.html standards_1.html + +autoconf_1.html: autoconf.texi + $(TEXI2HTML) -split_chapter $(srcdir)/autoconf.texi + +standards_1.html: standards.texi + $(TEXI2HTML) -split_chapter $(srcdir)/standards.texi + check: all rootme=`pwd`; srcrootme=`cd $(srcdir); pwd`; \ test -r install-sh || cp $(srcdir)/install-sh .; \ @@ -157,6 +166,9 @@ install: all $(M4FILES) acconfig.h installdirs install-info done; \ else :; fi +install-strip: + $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install + # Don't cd, to avoid breaking install-sh references. install-info: info installdirs if test -f autoconf.info; then \ @@ -191,7 +203,7 @@ config.status: configure maintainer-clean:: @echo "This command is intended for maintainers to use;" @echo "rebuilding the deleted files requires makeinfo." - rm -f TAGS *.info* INSTALL + rm -f TAGS *.html* *.info* INSTALL clean mostlyclean distclean maintainer-clean:: for dir in $(SUBDIRS); do \