chiark / gitweb /
update licence to GPLv3 or later (was GPLv2 or later).
[chiark-utils.git] / backup / Makefile
index 91f76640fbadd683ddd3488093fc32890822d38c..1dbddd3332ecb0d57593357e216c0f28a2c4e7fe 100644 (file)
@@ -10,7 +10,7 @@
 #
 # 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, or (at your option) any later version.
+# Foundation; either version 3, or (at your option) any later version.
 #
 # This is distributed in the hope that it will be useful, but WITHOUT ANY
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
@@ -25,20 +25,27 @@ us= chiark-backup
 
 include ../settings.make
 
-BINSCRIPTS=    checkallused loaded driver takedown whatsthis labeltape
-SHARESCRIPTS=  bringup full increm
-SHAREFILES=    backuplib.pl
+BINSCRIPTS=    checkallused loaded driver takedown whatsthis labeltape \
+               snaprsync
+SHARESCRIPTS=  bringup full increm snap-drop
+SHAREFILES=    backuplib.pl snap-common
+SNAPKINDS=     lvm remount remountrocp nosnap
 
 EXAMPLES=      relativity chiark
 
 all:
 
 install:               all
-               $(INSTALL_DIRECTORY) $(confdir) $(bindir) $(sharedir) $(vardir) $(man1dir)
+               $(INSTALL_DIRECTORY) $(confdir) $(confdir)/snap $(bindir) \
+                       $(sharedir) $(vardir) $(man1dir)
                set -e; for s in $(BINSCRIPTS); do \
                        $(INSTALL_SCRIPT) $$s $(bindir)/backup-$$s; done
                $(INSTALL_SHARE) $(SHAREFILES) $(sharedir)
                $(INSTALL_SCRIPT) $(SHARESCRIPTS) $(sharedir)
+               set -e; for s in $(SNAPKINDS); do \
+                       d=$(confdir)/snap/$$s; \
+                       test ! -f $$d || d=$$d.dist; \
+                       $(INSTALL_SCRIPT) $$s $$d; done
 
 install-docs:
                $(INSTALL_DIRECTORY) $(txtdocdir)
@@ -48,10 +55,10 @@ install-examples:
                set -e; for e in $(EXAMPLES); do \
                        cd examples/$$e; \
                        $(INSTALL_DIRECTORY) $(exampledir)/$$e; \
-                       $(INSTALL_SHARE) [^A-Z]*[^~] $(exampledir)/$$e; \
+                       $(INSTALL_SHARE) [!A-Z]*[!~] $(exampledir)/$$e; \
                        if test -f SYMLINKS.tar; then \
                                exec <SYMLINKS.tar; \
-                               (set -e; cd $(exampledir) && tar -xf -); \
+                               (set -e; cd $(exampledir)/$$e && tar -xf -); \
                        fi; \
                        cd ../..; \
                done