chiark / gitweb /
add with-lock-ex to new chiark-utils-bin package
[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 SHARESCRIPTS=   bringup full increm
30 SHAREFILES=     backuplib.pl
31
32 EXAMPLES=       relativity chiark
33
34 all:
35
36 install:                all
37                 $(INSTALL_DIRECTORY) $(confdir) $(bindir) $(sharedir) $(vardir) $(man1dir)
38                 set -e; for s in $(BINSCRIPTS); do \
39                         $(INSTALL_SCRIPT) $$s $(bindir)/backup-$$s; done
40                 $(INSTALL_SHARE) $(SHAREFILES) $(sharedir)
41                 $(INSTALL_SCRIPT) $(SHARESCRIPTS) $(sharedir)
42
43 install-docs:
44                 $(INSTALL_DIRECTORY) $(txtdocdir)
45                 $(INSTALL_SHARE) iwjbackup.txt $(txtdocdir)/README
46
47 install-examples:
48                 set -e; for e in $(EXAMPLES); do \
49                         cd examples/$$e; \
50                         $(INSTALL_DIRECTORY) $(exampledir)/$$e; \
51                         $(INSTALL_SHARE) [^A-Z]*[^~] $(exampledir)/$$e; \
52                         if test -f SYMLINKS.tar; then \
53                                 exec <SYMLINKS.tar; \
54                                 (set -e; cd $(exampledir) && tar -xf -); \
55                         fi; \
56                         cd ../..; \
57                 done
58
59 clean:
60                 rm -f *~ ./#*# *.o
61
62 distclean realclean:    clean