chiark / gitweb /
dedup-{format,sift}.c: Find ways to save space by making hardlinks.
[rsync-backup] / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Build script for rsync-backup
4 ###
5 ### (c) 2012 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the `rsync-backup' program.
11 ###
12 ### rsync-backup is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU General Public License as published by
14 ### the Free Software Foundation; either version 2 of the License, or
15 ### (at your option) any later version.
16 ###
17 ### rsync-backup is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ### GNU General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU General Public License
23 ### along with rsync-backup; if not, write to the Free Software Foundation,
24 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 bin_SCRIPTS              =
27 sbin_SCRIPTS             =
28 sbin_PROGRAMS            =
29 pkgdata_DATA             =
30 dist_noinst_SCRIPTS      =
31 dist_man_MANS            =
32 man_MANS                 =
33
34 EXTRA_DIST               =
35 EXTRA_PROGRAMS           =
36 CLEANFILES               =
37 DISTCLEANFILES           =
38
39 AM_CFLAGS                = $(mLib_CFLAGS)
40
41 ###--------------------------------------------------------------------------
42 ### Substitution of configuration data.
43
44 confsubst = $(top_srcdir)/config/confsubst
45 EXTRA_DIST              += config/confsubst
46
47 SUBSTVARS = \
48         PACKAGE="$(PACKAGE)" VERSION="$(VERSION)" \
49         BASH="$(BASH)" PYTHON="$(PYTHON)" \
50         sysconfdir="$(sysconfdir)" \
51         mntbkpdir="$(mntbkpdir)" \
52         fshashdir="$(fshashdir)" \
53         pkglocalstatedir="$(localstatedir)/lib/bkp" \
54         pkgdatadir="$(pkgdatadir)" \
55         logdir="$(logdir)"
56
57 V_SUBST = $(V_SUBST_$V)
58 V_SUBST_= $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
59 V_SUBST_0 = @printf "  SUBST  %s\n" $@;
60
61 SUBST = $(V_SUBST)$(confsubst)
62
63 ###--------------------------------------------------------------------------
64 ### Programs and scripts.
65
66 EXTRA_PROGRAMS          += rfreezefs
67 rfreezefs_SOURCES        = rfreezefs.c
68 rfreezefs_LDADD          = $(mLib_LIBS)
69 EXTRA_DIST              += rfreezefs.8
70 if HAVE_MLIB
71 sbin_PROGRAMS           += rfreezefs
72 man_MANS                += rfreezefs.8
73 endif
74
75 EXTRA_PROGRAMS          += dedup-format dedup-sift
76 dedup_format_SOURCES     = dedup-format.c
77 dedup_format_LDADD       = $(mLib_LIBS)
78 dedup_sift_SOURCES       = dedup-sift.c
79 dedup_sift_LDADD         = $(mLib_LIBS)
80 ##EXTRA_DIST            += dedup-format.8 dedup-sift.8
81 if HAVE_MLIB
82 sbin_PROGRAMS           += dedup-format dedup-sift
83 ##man_MANS              += dedup-format.8 dedup-sift.8
84 endif
85
86 pkgdata_DATA            += lib.sh
87 CLEANFILES              += lib.sh
88 EXTRA_DIST              += lib.sh.in
89 lib.sh: lib.sh.in Makefile
90         $(SUBST) >lib.sh.new $(srcdir)/lib.sh.in $(SUBSTVARS) && \
91                 mv lib.sh.new lib.sh
92
93 sbin_SCRIPTS            += rsync-backup
94 dist_man_MANS           += rsync-backup.8
95 CLEANFILES              += rsync-backup
96 EXTRA_DIST              += rsync-backup.in
97 rsync-backup: rsync-backup.in Makefile
98         $(SUBST) >rsync-backup.new \
99                         $(srcdir)/rsync-backup.in $(SUBSTVARS) && \
100                 chmod +x rsync-backup.new && \
101                 mv rsync-backup.new rsync-backup
102
103 sbin_SCRIPTS            += update-bkp-index
104 dist_man_MANS           += update-bkp-index.8
105 CLEANFILES              += update-bkp-index
106 EXTRA_DIST              += update-bkp-index.in
107 update-bkp-index: update-bkp-index.in Makefile
108         $(SUBST) >update-bkp-index.new \
109                         $(srcdir)/update-bkp-index.in $(SUBSTVARS) && \
110                 chmod +x update-bkp-index.new && \
111                 mv update-bkp-index.new update-bkp-index
112
113 sbin_SCRIPTS            += check-bkp-status
114 dist_man_MANS           += check-bkp-status.8
115 CLEANFILES              += check-bkp-status
116 EXTRA_DIST              += check-bkp-status.in
117 check-bkp-status: check-bkp-status.in Makefile
118         $(SUBST) >check-bkp-status.new \
119                         $(srcdir)/check-bkp-status.in $(SUBSTVARS) && \
120                 chmod +x check-bkp-status.new && \
121                 mv check-bkp-status.new check-bkp-status
122
123 bin_SCRIPTS             += fshash
124 dist_man_MANS           += fshash.1
125 CLEANFILES              += fshash
126 EXTRA_DIST              += fshash.in
127 fshash: fshash.in Makefile
128         $(SUBST) >fshash.new \
129                         $(srcdir)/fshash.in $(SUBSTVARS) && \
130                 chmod +x fshash.new && \
131                 mv fshash.new fshash
132
133 ###--------------------------------------------------------------------------
134 ### Contributed scripts.
135
136 ## Some simple scripts showing how one might create and manage backup
137 ## volumes.  Assume the distorted.org.uk key management machinery.
138 dist_noinst_SCRIPTS     += create-backup-volume
139 dist_noinst_SCRIPTS     += mount-backup-volume
140 dist_noinst_SCRIPTS     += umount-backup-volume
141
142 ###--------------------------------------------------------------------------
143 ### Release machinery.
144
145 EXTRA_DIST              += config/auto-version
146
147 dist-hook:
148         echo $(VERSION) >$(distdir)/RELEASE
149
150 ###--------------------------------------------------------------------------
151 ### Debian packaging.
152
153 EXTRA_DIST              += debian/copyright debian/changelog
154 EXTRA_DIST              += debian/control debian/rules
155 EXTRA_DIST              += debian/compat
156
157 ## fshash
158 EXTRA_DIST              += debian/fshash.install
159
160 ## rfreezefs
161 EXTRA_DIST              += debian/rfreezefs.install
162
163 ## rsync-backup
164 EXTRA_DIST              += debian/rsync-backup.install
165 EXTRA_DIST              += debian/rsync-backup.examples
166
167 ###----- That's all, folks --------------------------------------------------