X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/6c8d5f965a7c778a352e2bda3336d7d0c62c4df7..b0f66028a9a17a845590a4fe737a4f5e46f6b778:/conf/Makefile.am diff --git a/conf/Makefile.am b/conf/Makefile.am index e3e69e6..0bf1c28 100644 --- a/conf/Makefile.am +++ b/conf/Makefile.am @@ -1,11 +1,11 @@ ## Process this file with `automake' to generate `Makefile.in' ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.1 1997/08/20 16:27:02 mdw Exp $ +## $Id: Makefile.am,v 1.5 2003/11/29 23:39:16 mdw Exp $ ## ## Makefile for `become' ## -## (c) 1997 EBI +## (c) 1998 EBI ## ##----- Licensing notice ---------------------------------------------------- @@ -29,7 +29,20 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.am,v $ -## Revision 1.1 1997/08/20 16:27:02 mdw +## Revision 1.5 2003/11/29 23:39:16 mdw +## Debianization. +## +## Revision 1.4 1999/05/04 16:18:39 mdw +## Make sure the sample configuration gets distributed. (Automake changed +## behaviour here.) +## +## Revision 1.3 1998/01/12 16:45:34 mdw +## Fix copyright date. +## +## Revision 1.2 1997/09/18 11:15:14 mdw +## Install a skeleton configuration file carefully. +## +## Revision 1.1 1997/08/20 16:27:02 mdw ## New file. ## @@ -37,6 +50,27 @@ etcdir = @etcdir@ -etc_DATA = become.conf +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 ---------------------------------------------------