## Process this file with `automake' to generate `Makefile.in' ## -*-makefile-*- ## ## $Id: Makefile.am,v 1.10 2004/04/08 01:36:20 mdw Exp $ ## ## Makefile for `become' ## ## (c) 1998 EBI ## ##----- Licensing notice ---------------------------------------------------- ## ## This file is part of `become' ## ## `Become' is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## `Become' is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with `become'; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ##----- Distribute the right things ----------------------------------------- htmldir = @htmldir@ EXTRA_DIST = gpl.texi texinfo.tex texinice.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) $(DESTDIR)$(htmldir) for i in $(srcdir)/become_*.html; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(htmldir); \ done uninstall-local: rm -f $(htmldir)/become_*.html dist-hook: distdir=`cd $(distdir) && pwd`; \ cd $(srcdir); \ ln become_*.html $$distdir MAINTAINERCLEANFILES = \ $(srcdir)/stamp-html.in $(srcdir)/become_*.html \ $(srcdir)/become.info* ##----- That's all, folks ---------------------------------------------------