dedup-{format,sift}.c: Find ways to save space by making hardlinks.
[rsync-backup] / Makefile.am
CommitLineData
f6b4ffdc
MW
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
26bin_SCRIPTS =
27sbin_SCRIPTS =
28sbin_PROGRAMS =
e0ff797b 29pkgdata_DATA =
f6b4ffdc
MW
30dist_noinst_SCRIPTS =
31dist_man_MANS =
b5d0a3db 32man_MANS =
f6b4ffdc
MW
33
34EXTRA_DIST =
b5d0a3db 35EXTRA_PROGRAMS =
f6b4ffdc
MW
36CLEANFILES =
37DISTCLEANFILES =
38
39AM_CFLAGS = $(mLib_CFLAGS)
40
41###--------------------------------------------------------------------------
42### Substitution of configuration data.
43
44confsubst = $(top_srcdir)/config/confsubst
45EXTRA_DIST += config/confsubst
46
47SUBSTVARS = \
48 PACKAGE="$(PACKAGE)" VERSION="$(VERSION)" \
49 BASH="$(BASH)" PYTHON="$(PYTHON)" \
50 sysconfdir="$(sysconfdir)" \
51 mntbkpdir="$(mntbkpdir)" \
52 fshashdir="$(fshashdir)" \
a8447303 53 pkglocalstatedir="$(localstatedir)/lib/bkp" \
e0ff797b 54 pkgdatadir="$(pkgdatadir)" \
f6b4ffdc
MW
55 logdir="$(logdir)"
56
57V_SUBST = $(V_SUBST_$V)
58V_SUBST_= $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
59V_SUBST_0 = @printf " SUBST %s\n" $@;
60
61SUBST = $(V_SUBST)$(confsubst)
62
63###--------------------------------------------------------------------------
64### Programs and scripts.
65
b5d0a3db 66EXTRA_PROGRAMS += rfreezefs
f6b4ffdc
MW
67rfreezefs_SOURCES = rfreezefs.c
68rfreezefs_LDADD = $(mLib_LIBS)
b5d0a3db
MW
69EXTRA_DIST += rfreezefs.8
70if HAVE_MLIB
71sbin_PROGRAMS += rfreezefs
72man_MANS += rfreezefs.8
73endif
f6b4ffdc 74
cb8be370
MW
75EXTRA_PROGRAMS += dedup-format dedup-sift
76dedup_format_SOURCES = dedup-format.c
77dedup_format_LDADD = $(mLib_LIBS)
78dedup_sift_SOURCES = dedup-sift.c
79dedup_sift_LDADD = $(mLib_LIBS)
80##EXTRA_DIST += dedup-format.8 dedup-sift.8
81if HAVE_MLIB
82sbin_PROGRAMS += dedup-format dedup-sift
83##man_MANS += dedup-format.8 dedup-sift.8
84endif
85
e0ff797b
MW
86pkgdata_DATA += lib.sh
87CLEANFILES += lib.sh
88EXTRA_DIST += lib.sh.in
89lib.sh: lib.sh.in Makefile
90 $(SUBST) >lib.sh.new $(srcdir)/lib.sh.in $(SUBSTVARS) && \
91 mv lib.sh.new lib.sh
92
f6b4ffdc 93sbin_SCRIPTS += rsync-backup
69305044 94dist_man_MANS += rsync-backup.8
f6b4ffdc
MW
95CLEANFILES += rsync-backup
96EXTRA_DIST += rsync-backup.in
97rsync-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
a8447303
MW
103sbin_SCRIPTS += update-bkp-index
104dist_man_MANS += update-bkp-index.8
105CLEANFILES += update-bkp-index
106EXTRA_DIST += update-bkp-index.in
107update-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
9f0350f9
MW
113sbin_SCRIPTS += check-bkp-status
114dist_man_MANS += check-bkp-status.8
115CLEANFILES += check-bkp-status
116EXTRA_DIST += check-bkp-status.in
117check-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
f6b4ffdc 123bin_SCRIPTS += fshash
69305044 124dist_man_MANS += fshash.1
f6b4ffdc
MW
125CLEANFILES += fshash
126EXTRA_DIST += fshash.in
127fshash: 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.
138dist_noinst_SCRIPTS += create-backup-volume
139dist_noinst_SCRIPTS += mount-backup-volume
140dist_noinst_SCRIPTS += umount-backup-volume
141
142###--------------------------------------------------------------------------
143### Release machinery.
144
145EXTRA_DIST += config/auto-version
146
147dist-hook:
148 echo $(VERSION) >$(distdir)/RELEASE
149
06e71670
MW
150###--------------------------------------------------------------------------
151### Debian packaging.
152
153EXTRA_DIST += debian/copyright debian/changelog
154EXTRA_DIST += debian/control debian/rules
155EXTRA_DIST += debian/compat
156
b2341f25
MW
157## fshash
158EXTRA_DIST += debian/fshash.install
159
160## rfreezefs
161EXTRA_DIST += debian/rfreezefs.install
162
163## rsync-backup
164EXTRA_DIST += debian/rsync-backup.install
165EXTRA_DIST += debian/rsync-backup.examples
166
f6b4ffdc 167###----- That's all, folks --------------------------------------------------