chiark / gitweb /
Makefile: Provide [un]install-docs
[userv.git] / Makefile.in
index 21d5890963966f0f55c219c9be0740da1765daa0..1ed5c0b8c71de631f207ccb322509e8c050dd7ef 100644 (file)
@@ -1,10 +1,13 @@
 #  userv - Makefile.in
 #  
-#  Copyright (C)1996-2017 Ian Jackson
+#  userv is
+#  Copyright 1996-2017 Ian Jackson <ian@davenant.greenend.org.uk>.
+#  Copyright 2000      Ben Harris <bjh21@cam.ac.uk>
+#  Copyright 2016-2017 Peter Benie <pjb1008@cam.ac.uk>
 #  
 #  This 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
+#  the Free Software Foundation; either version 3 of the License, or
 #  (at your option) any later version.
 #  
 #  This program is distributed in the hope that it will be useful, but
@@ -13,8 +16,8 @@
 #  General Public License for more details.
 #  
 #  You should have received a copy of the GNU General Public License
-#  along with userv; if not, write to the Free Software
-#  Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 
 VERSION=@VERSION@
 VEREXT=std
@@ -39,14 +42,15 @@ INSTALL_PROGRAM=@INSTALL_PROGRAM@ $(INSTALL_FLAGS)
 INSTALL_DATA=@INSTALL_DATA@ $(INSTALL_FLAGS)
 prefix=@prefix@
 exec_prefix=$(prefix)
+share_prefix=$(prefix)/share
 bindir=$(exec_prefix)/bin
-mandir=$(prefix)/man
+mandir=$(share_prefix)/man
 man1dir=$(mandir)/man1
 man8dir=$(mandir)/man8
 sbindir=$(exec_prefix)/sbin
 etcdir=/etc
 etcsubdir=$(etcdir)/userv
-docdir=$(prefix)/userv
+docdir=$(share_prefix)/doc/userv
 
 TARGETS=       daemon client
 TARGETS_DOC_PS=        spec.ps overview.ps
@@ -72,30 +76,36 @@ all:                $(TARGETS)
 docs:          $(TARGETS_DOC)
 
 install:       all
-               $(INSTALL_PROGRAM) -m 755 daemon $(sbindir)/uservd
-               $(INSTALL_PROGRAM) -m 4755 client $(bindir)/userv
-               $(INSTALL) -d -m 2755 $(etcsubdir) \
-       $(etcsubdir)/default.d $(etcsubdir)/services.d $(etcsubdir)/override.d
-               if test ! -f $(etcsubdir)/system.default; then \
-                       $(INSTALL_DATA) system.default $(etcsubdir); fi
-               if test ! -f $(etcsubdir)/system.override; then \
-                       $(INSTALL_DATA) system.override $(etcsubdir); fi
+               $(INSTALL) -d $(addprefix $(DESTDIR), $(bindir) $(sbindir))
+               $(INSTALL_PROGRAM) -m 755 daemon $(DESTDIR)$(sbindir)/uservd
+               $(INSTALL_PROGRAM) -m 4755 client $(DESTDIR)$(bindir)/userv
+               set -e; for f in '' /default.d /services.d /override.d; do \
+                       $(INSTALL) -d -m 2755 $(DESTDIR)$(etcsubdir)$$f; \
+               done
+               set -e; for f in system.default system.override; do     \
+                       if test ! -f $(DESTDIR)$(etcsubdir)/$$f; then   \
+                               $(INSTALL_DATA) $$f $(DESTDIR)$(etcsubdir); \
+                       fi;                                             \
+               done
 
 install-strip:
                $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
 
-install-doc:   $(TARGETS_DOC)
-               $(INSTALL) -d -m 2755 $(docdir) $(docdir)/spec.html
-               $(INSTALL) -d -m 2755 $(mandir) $(man1dir) $(man8dir)
-               $(INSTALL_DATA) -m 644 $(TARGETS_DOC_PS) $(docdir)/.
-               $(INSTALL_DATA) -m 644 spec.html/*.html $(docdir)/spec.html/.
-               $(INSTALL_DATA) -m 644 $(MAN1PAGES) $(man1dir)
-               $(INSTALL_DATA) -m 644 $(MAN8PAGES) $(man8dir)
+install-doc install-docs:      $(TARGETS_DOC)
+               $(INSTALL) -d -m 2755 $(addprefix $(DESTDIR),   \
+                       $(docdir) $(docdir)/spec.html           \
+                       $(mandir) $(man1dir) $(man8dir)         \
+               )
+               $(INSTALL_DATA) -m 644 $(TARGETS_DOC_PS) $(DESTDIR)$(docdir)/.
+               $(INSTALL_DATA) -m 644 spec.html/*.html \
+                       $(DESTDIR)$(docdir)/spec.html/.
+               $(INSTALL_DATA) -m 644 $(MAN1PAGES) $(DESTDIR)$(man1dir)
+               $(INSTALL_DATA) -m 644 $(MAN8PAGES) $(DESTDIR)$(man8dir)
 
 uninstall:
                rm -f $(bindir)/userv $(sbindir)/uservd
 
-uninstall-doc:
+uninstall-doc uninstall-docs:
                cd $docdir && rm -rf $(TARGETS_DOC_RM)
 
 check: