X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/8b5803992770fb550f25954228ef0f271009dfe9..e669724dbe589e85c6e32335cff510abb6148086:/manual/Makefile.am diff --git a/manual/Makefile.am b/manual/Makefile.am index 1248be4..040a2af 100644 --- a/manual/Makefile.am +++ b/manual/Makefile.am @@ -1,11 +1,11 @@ ## Process this file with `automake' to generate `Makefile.in' ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.1 1997/08/07 09:35:34 mdw Exp $ +## $Id: Makefile.am,v 1.5 1998/01/20 14:48:18 mdw Exp $ ## ## Makefile for `become' ## -## (c) 1997 EBI +## (c) 1998 EBI ## ##----- Licensing notice ---------------------------------------------------- @@ -29,12 +29,48 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ +## Revision 1.5 1998/01/20 14:48:18 mdw +## Distribute gpl.texi. Ooops. +## +## Revision 1.4 1998/01/12 16:45:35 mdw +## Fix copyright date. +## +## Revision 1.3 1997/09/24 13:02:00 mdw +## Distribute stamp-html.in so that the HTML files don't get recreated +## unnecessarily. +## +## Revision 1.2 1997/09/18 11:15:41 mdw +## Build HTML documentation and install it. +## ## Revision 1.1 1997/08/07 09:35:34 mdw ## Added trivial Makefiles. Better write some documentation. ## ##----- Distribute the right things ----------------------------------------- -EXTRA_DIST = become.tex syntax.sty +htmldir = @htmldir@ + +EXTRA_DIST = gpl.texi texinfo.tex stamp-html.in +info_TEXINFOS = become.texi +noinst_DATA = become_*.html + +become_*.html: stamp-html.in + +stamp-html.in: $(srcdir)/become.texi + cd $(srcdir); texi2html -menu -split_node become.texi + echo datestamp >$(srcdir)/stamp-html.in + +install-data-local: stamp-html.in + $(mkinstalldirs) $(htmldir) + cd $(srcdir); for i in become_*.html; do \ + $(INSTALL_DATA) $$i $(htmldir)/$$i; \ + done + +uninstall-local: + rm -f $(htmldir)/become_*.html + +MAINTAINERCLEANFILES = \ + $(srcdir)/stamp-html.in $(srcdir)/become_*.html \ + $(srcdir)/become.info* ##----- That's all, folks ---------------------------------------------------