chiark / gitweb /
keyfunc.sh.in: Export key label and owner as options to key generators.
[distorted-keys] / Makefile.am
CommitLineData
53263601
MW
1### -*-makefile-*-
2###
3### Build script for distorted.org.uk key management
4###
5### (c) 2011 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
599c8f75
MW
10### This file is part of the distorted.org.uk key management suite.
11###
12### distorted-keys is free software; you can redistribute it and/or modify
53263601
MW
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###
599c8f75 17### distorted-keys is distributed in the hope that it will be useful,
53263601
MW
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
599c8f75 23### along with distorted-keys; if not, write to the Free Software Foundation,
53263601
MW
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
c0979a8f
MW
26pkgconfdir = $(sysconfdir)/$(PACKAGE)
27profiledir = $(pkgconfdir)/profile.d
28
53263601 29bin_SCRIPTS =
c47f2aba 30sbin_SCRIPTS =
a36c4bb5
MW
31dist_pkgdata_SCRIPTS =
32dist_pkgdata_DATA =
33pkgdata_DATA =
c0979a8f 34dist_profile_DATA =
b401ccf1
MW
35noinst_DATA =
36USERV_CONFIG =
37KEYS_CONFIG =
38TOPLEVEL_CONFIG =
53263601
MW
39
40EXTRA_DIST =
41CLEANFILES =
42DISTCLEANFILES =
43
44###--------------------------------------------------------------------------
45### Substitution of configuration data.
46
47confsubst = $(top_srcdir)/config/confsubst
48EXTRA_DIST += config/confsubst
49
50SUBSTVARS = \
a85aae03 51 PACKAGE="$(PACKAGE)" VERSION="$(VERSION)" \
53263601 52 PYTHON="$(PYTHON)" \
c122b713 53 bindir="$(bindir)" sbindir="$(sbindir)" \
33aa94e8 54 sysconfdir="$(sysconfdir)" pkgconfdir="$(pkgconfdir)" \
c0979a8f 55 pkgstatedir="$(localstatedir)/lib/$(PACKAGE)" \
a36c4bb5 56 pkgdatadir="$(pkgdatadir)" \
c122b713 57 user="$(user)"
53263601 58
59d0e78e
MW
59V_SUBST = $(V_SUBST_$V)
60V_SUBST_= $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
61V_SUBST_0 = @printf " SUBST %s\n" $@;
62
63SUBST = $(V_SUBST)$(confsubst)
53263601
MW
64
65###--------------------------------------------------------------------------
66### Utility programs.
67
68## Shamir secret-sharing.
69bin_SCRIPTS += shamir
70EXTRA_DIST += shamir.in
71CLEANFILES += shamir
72shamir: shamir.in Makefile
73 $(SUBST) $(srcdir)/shamir.in $(SUBSTVARS) >shamir.new && \
74 chmod +x shamir.new && mv shamir.new shamir
75
c47f2aba
MW
76## Property expansion.
77bin_SCRIPTS += extract-profile
78EXTRA_DIST += extract-profile.in
79CLEANFILES += extract-profile
80extract-profile: extract-profile.in Makefile
81 $(SUBST) $(srcdir)/extract-profile.in $(SUBSTVARS) \
82 >extract-profile.new && \
83 chmod +x extract-profile.new && \
84 mv extract-profile.new extract-profile
85
53263601
MW
86###--------------------------------------------------------------------------
87### Main driver program and commands.
88
89## Main driver.
4c8c4065 90sbin_SCRIPTS += keys
53263601
MW
91EXTRA_DIST += keys.in
92CLEANFILES += keys
93keys: keys.in Makefile
94 $(SUBST) $(srcdir)/keys.in $(SUBSTVARS) >keys.new && \
95 chmod +x keys.new && mv keys.new keys
96
97## Utilities library.
a36c4bb5 98pkgdata_DATA += keyfunc.sh
53263601
MW
99EXTRA_DIST += keyfunc.sh.in
100CLEANFILES += keyfunc.sh
101keyfunc.sh: keyfunc.sh.in Makefile
102 $(SUBST) $(srcdir)/keyfunc.sh.in $(SUBSTVARS) >keyfunc.sh.new && \
103 mv keyfunc.sh.new keyfunc.sh
104
105## Commands.
a36c4bb5
MW
106dist_pkgdata_SCRIPTS += keys.conceal
107dist_pkgdata_SCRIPTS += keys.delete-keeper
108dist_pkgdata_SCRIPTS += keys.keeper-cards
109dist_pkgdata_SCRIPTS += keys.keeper-nub
110dist_pkgdata_SCRIPTS += keys.list-keepers
111dist_pkgdata_SCRIPTS += keys.list-recov
112dist_pkgdata_SCRIPTS += keys.new-keeper
113dist_pkgdata_SCRIPTS += keys.new-recov
114dist_pkgdata_SCRIPTS += keys.recover
115dist_pkgdata_SCRIPTS += keys.reveal
116dist_pkgdata_SCRIPTS += keys.stash
53263601 117
b401ccf1
MW
118## Common profiles.
119dist_profile_DATA += profile.d/00base
120dist_profile_DATA += profile.d/02infra
121
122## Other configuration.
123KEYS_CONFIG += keys.conf
124EXTRA_DIST += keys.conf
125
126KEYS_CONFIG += admin.users admin.groups
127EXTRA_DIST += admin.users admin.groups
128
ac1aec3a
MW
129KEYS_CONFIG += keeper-cards.tex
130EXTRA_DIST += keeper-cards.tex
131
8f2a76c1
MW
132###--------------------------------------------------------------------------
133### Crypto operations.
134
135## Main driver program.
4c8c4065 136bin_SCRIPTS += cryptop
8f2a76c1
MW
137EXTRA_DIST += cryptop.in
138CLEANFILES += cryptop
139cryptop: cryptop.in Makefile
140 $(SUBST) $(srcdir)/cryptop.in $(SUBSTVARS) >cryptop.new && \
141 chmod +x cryptop.new && mv cryptop.new cryptop
142
143## Key type libraries.
a36c4bb5 144dist_pkgdata_DATA += ktype.gnupg
c0979a8f
MW
145dist_profile_DATA += profile.d/01gnupg
146
a36c4bb5 147dist_pkgdata_DATA += ktype.seccure
c0979a8f 148dist_profile_DATA += profile.d/01seccure
8f2a76c1
MW
149
150## Commands.
a36c4bb5
MW
151dist_pkgdata_SCRIPTS += cryptop.archive
152dist_pkgdata_SCRIPTS += cryptop.genkey
153dist_pkgdata_SCRIPTS += cryptop.list
154dist_pkgdata_SCRIPTS += cryptop.delkey
155dist_pkgdata_SCRIPTS += cryptop.recover
156dist_pkgdata_SCRIPTS += cryptop.info
157dist_pkgdata_SCRIPTS += cryptop.public
158dist_pkgdata_SCRIPTS += cryptop.encrypt
159dist_pkgdata_SCRIPTS += cryptop.decrypt
160dist_pkgdata_SCRIPTS += cryptop.sign
161dist_pkgdata_SCRIPTS += cryptop.verify
8f2a76c1 162
c122b713 163## Userv services configuration.
b401ccf1 164USERV_CONFIG += userv/distorted-keys
14e6d4c9
MW
165EXTRA_DIST += userv/distorted-keys.in
166CLEANFILES += userv/distorted-keys
167userv/distorted-keys: userv/distorted-keys.in Makefile
168 $(AM_V_at)mkdir -p userv/
169 $(SUBST) $(srcdir)/userv/distorted-keys.in $(SUBSTVARS) \
170 >userv/distorted-keys.new && \
171 mv userv/distorted-keys.new userv/distorted-keys
c122b713 172
b8691d14
MW
173###--------------------------------------------------------------------------
174### Standalone operations on public keys.
175
176bin_SCRIPTS += pubkeyop
177EXTRA_DIST += pubkeyop.in
178CLEANFILES += pubkeyop
179pubkeyop: pubkeyop.in Makefile
180 $(SUBST) $(srcdir)/pubkeyop.in $(SUBSTVARS) >pubkeyop.new && \
181 chmod +x pubkeyop.new && mv pubkeyop.new pubkeyop
182
33aa94e8
MW
183###--------------------------------------------------------------------------
184### Secure storage management.
185
186## Ephemeral filesystem construction.
187sbin_SCRIPTS += mount-ephemeral
188EXTRA_DIST += mount-ephemeral
189
190## Directory claiming service.
b401ccf1 191USERV_CONFIG += userv/claim-dir
33aa94e8
MW
192EXTRA_DIST += userv/claim-dir.in
193CLEANFILES += userv/claim-dir
194userv/claim-dir: userv/claim-dir.in Makefile
195 $(AM_V_at)mkdir -p userv/
196 $(SUBST) $(srcdir)/userv/claim-dir.in $(SUBSTVARS) \
197 >userv/claim-dir.new && \
198 mv userv/claim-dir.new userv/claim-dir
199
200## Configuration file.
b401ccf1 201TOPLEVEL_CONFIG += claim-dir.tab
33aa94e8
MW
202EXTRA_DIST += claim-dir.tab
203
c0979a8f 204###--------------------------------------------------------------------------
b401ccf1
MW
205### Installing configuration.
206
207## Install userv configuration.
208noinst_DATA += $(USERV_CONFIG)
209install-data-local::
210 $(MKDIR_P) $(DESTDIR)$(uservconfdir)
211 @for i in $(USERV_CONFIG); do \
212 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
213 if [ -f $(DESTDIR)$(uservconfdir)/$$b ]; then continue; fi; \
214 if [ -f $$i ]; then s=$$i; else s=$(srcdir)/$$i; fi; \
215 echo $(INSTALL_DATA) $$s $(DESTDIR)$(uservconfdir); \
216 $(INSTALL_DATA) $$s $(DESTDIR)$(uservconfdir) || exit 1; \
217 done
218uninstall-local::
219 @for i in $(USERV_CONFIG); do \
220 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
221 echo rm -f $(DESTDIR)$(uservconfdir)/$$b; \
222 rm -f $(DESTDIR)$(uservconfdir)/$$b; \
223 done
224
225## Install keys configuration.
226noinst_DATA += $(KEYS_CONFIG)
227install-data-local::
228 $(MKDIR_P) $(DESTDIR)$(pkgconfdir)
229 @for i in $(KEYS_CONFIG); do \
230 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
231 if [ -f $(DESTDIR)$(pkgconfdir)/$$b ]; then continue; fi; \
232 if [ -f $$i ]; then s=$$i; else s=$(srcdir)/$$i; fi; \
233 echo $(INSTALL_DATA) $$s $(DESTDIR)$(pkgconfdir); \
234 $(INSTALL_DATA) $$s $(DESTDIR)$(pkgconfdir) || exit 1; \
235 done
236uninstall-local::
237 @for i in $(KEYS_CONFIG); do \
238 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
239 echo rm -f $(DESTDIR)$(pkgconfdir)/$$b; \
240 rm -f $(DESTDIR)$(pkgconfdir)/$$b; \
241 done
242
243## Install toplevel configuration.
244noinst_DATA += $(TOPLEVEL_CONFIG)
245install-data-local::
246 $(MKDIR_P) $(DESTDIR)$(sysconfdir)
247 @for i in $(TOPLEVEL_CONFIG); do \
248 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
249 if [ -f $(DESTDIR)$(sysconfdir)/$$b ]; then continue; fi; \
250 if [ -f $$i ]; then s=$$i; else s=$(srcdir)/$$i; fi; \
251 echo $(INSTALL_DATA) $$s $(DESTDIR)$(sysconfdir); \
252 $(INSTALL_DATA) $$s $(DESTDIR)$(sysconfdir) || exit 1; \
253 done
254uninstall-local::
255 @for i in $(TOPLEVEL_CONFIG); do \
256 b=$$(expr /$$i : '.*/\([^/]*\)$$'); \
257 echo rm -f $(DESTDIR)$(sysconfdir)/$$b; \
258 rm -f $(DESTDIR)$(sysconfdir)/$$b; \
259 done
125f634c 260
d38dc450
MW
261###--------------------------------------------------------------------------
262### Release setup.
263
264dist-hook::
265 echo $(VERSION) >$(distdir)/RELEASE
266
267EXTRA_DIST += config/auto-version
268
f012ad83
MW
269###--------------------------------------------------------------------------
270### Debian packaging.
271
272EXTRA_DIST += debian/changelog debian/control debian/copyright
273EXTRA_DIST += debian/rules debian/compat
274
315ad13e
MW
275EXTRA_DIST += debian/distorted-keys-base.install
276
f012ad83
MW
277EXTRA_DIST += debian/distorted-keys.install
278EXTRA_DIST += debian/distorted-keys.postinst
279
33aa94e8
MW
280EXTRA_DIST += debian/claim-dir.install
281
53263601 282###----- That's all, folks --------------------------------------------------