chiark / gitweb /
sharefile snap-common
[chiark-utils.git] / backup / Makefile
1 # Makefile
2 # simple make settings
3 #
4 # This file is part of chiark backup, a system for backing up GNU/Linux and
5 # other UN*X-compatible machines, as used on chiark.greenend.org.uk.
6 #
7 # chiark backup is:
8 #  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
9 #  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
10 #
11 # This is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2, or (at your option) any later version.
14 #
15 # This is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18 # details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with this program; if not, write to the Free Software Foundation, Inc.,
22 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 us=     chiark-backup
25
26 include ../settings.make
27
28 BINSCRIPTS=     checkallused loaded driver takedown whatsthis labeltape \
29                 snaprsync
30 SHARESCRIPTS=   bringup full increm snap-drop
31 SHAREFILES=     backuplib.pl snap-common
32 SNAPKINDS=      lvm remount remountrocp
33
34 EXAMPLES=       relativity chiark
35
36 all:
37
38 install:                all
39                 $(INSTALL_DIRECTORY) $(confdir) $(confdir)/snap $(bindir) \
40                         $(sharedir) $(vardir) $(man1dir)
41                 set -e; for s in $(BINSCRIPTS); do \
42                         $(INSTALL_SCRIPT) $$s $(bindir)/backup-$$s; done
43                 $(INSTALL_SHARE) $(SHAREFILES) $(sharedir)
44                 $(INSTALL_SCRIPT) $(SHARESCRIPTS) $(sharedir)
45                 set -e; for s in $(SNAPKINDS); do \
46                         d=$(confdir)/snap/$$s; \
47                         test ! -f $$d || d=$$d.dist; \
48                         $(INSTALL_SCRIPT) $$s $$d; done
49
50 install-docs:
51                 $(INSTALL_DIRECTORY) $(txtdocdir)
52                 $(INSTALL_SHARE) iwjbackup.txt $(txtdocdir)/README
53
54 install-examples:
55                 set -e; for e in $(EXAMPLES); do \
56                         cd examples/$$e; \
57                         $(INSTALL_DIRECTORY) $(exampledir)/$$e; \
58                         $(INSTALL_SHARE) [^A-Z]*[^~] $(exampledir)/$$e; \
59                         if test -f SYMLINKS.tar; then \
60                                 exec <SYMLINKS.tar; \
61                                 (set -e; cd $(exampledir)/$$e && tar -xf -); \
62                         fi; \
63                         cd ../..; \
64                 done
65
66 clean:
67                 rm -f *~ ./#*# *.o
68
69 distclean realclean:    clean