## Process this file with `automake' to generate `Makefile.in' ## -*-makefile-*- ## ## $Id: Makefile.am,v 1.6 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. ## --- Install configuration things --- etcdir = @etcdir@ noinst_DATA = become.conf EXTRA_DIST = become.conf install-data-local: become.conf $(mkinstalldirs) $(DESTDIR)$(etcdir) if test -r $(DESTDIR)$(etcdir)/become.conf; then \ echo ">>>>>"; \ echo ">>>>> become.conf NOT installed"; \ echo ">>>>>"; \ else \ $(INSTALL_DATA) $(srcdir)/become.conf \ $(DESTDIR)$(etcdir)/become.conf; \ fi uninstall-local: if cmp -s $(srcdir)/become.conf $(DESTDIR)$(etcdir)/become.conf; then \ rm -f $(DESTDIR)$(etcdir)/become.conf; \ else \ echo ">>>>>"; \ echo ">>>>> $(etcdir)/become.conf NOT uninstalled."; \ echo ">>>>>"; \ fi ##----- That's all, folks ---------------------------------------------------