1999-01-09 Ben Elliston <bje@cygnus.com>

* Makefile.in (html): New target. Generate HTML documentation.
	Contributed by Wilfredo Sanchez <wsanchez@apple.com>.
This commit is contained in:
Ben Elliston 1999-01-08 17:05:35 +00:00
parent fdcd1f0c9d
commit 1cbe5e94be
3 changed files with 29 additions and 2 deletions

View File

@ -1,5 +1,8 @@
1999-01-09 Ben Elliston <bje@cygnus.com>
* Makefile.in (html): New target. Generate HTML documentation.
Contributed by Wilfredo Sanchez <wsanchez@apple.com>.
* autoconf.texi (AC_CHECK_LIB): Explain more. Contributed by Bob
Friesenhahn <bfriesen@simple.dallas.tx.us>.
(UPDATED): Bump to 1999.

View File

@ -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 \

View File

@ -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 \