1
WARN=-O -Wall -Wformat=2 -Winit-self -Wmissing-include-dirs \
2
-Wswitch-default -Wswitch-enum -Wunused-parameter \
3
-Wstrict-aliasing=2 -Wextra -Wfloat-equal -Wundef -Wshadow \
4
-Wunsafe-loop-optimizations -Wpointer-arith \
5
-Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings \
6
-Wconversion -Wstrict-prototypes -Wold-style-definition \
7
-Wpacked -Wnested-externs -Wunreachable-code -Winline \
8
-Wvolatile-register-var
10
# For info about _FORTIFY_SOURCE, see
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
FORTIFY=-D_FORTIFY_SOURCE=2 # -fstack-protector-all
18
# CONFDIR=/usr/local/lib/mandos
20
# MANDIR=/usr/local/man
23
# Do not change these two
24
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) $(LANGUAGE)
27
DOCBOOKTOMAN=xsltproc --nonet \
28
--param man.charmap.use.subset 0 \
29
--param make.year.ranges 1 \
30
--param make.single.year.ranges 1 \
31
--param man.output.quietly 1 \
32
--param man.authors.section.enabled 0
34
PLUGINS=plugins.d/password-prompt plugins.d/password-request
35
PROGS=plugin-runner $(PLUGINS)
36
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
37
plugins.d/password-request.8mandos \
38
plugins.d/password-prompt.8mandos mandos.conf.5 \
41
objects=$(shell for p in $(PROGS); do echo $${p}.o; done)
48
cd $(dir $^); $(DOCBOOKTOMAN) $(notdir $^)
51
cd $(dir $^); $(DOCBOOKTOMAN) $(notdir $^)
54
cd $(dir $^); $(DOCBOOKTOMAN) $(notdir $^)
56
plugin-runner: plugin-runner.o
57
$(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
59
plugins.d/password-request: plugins.d/password-request.o
60
$(LINK.o) -lgnutls -lavahi-core -lgpgme $(COMMON) $^ \
61
$(LOADLIBES) $(LDLIBS) -o $@
63
plugins.d/password-prompt: plugins.d/password-prompt.o
64
$(LINK.o) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
66
.PHONY : all clean distclean run-client run-server install \
67
install-server install-client uninstall uninstall-server \
68
uninstall-client purge purge-server purge-client
1
CFLAGS="-Wall -std=gnu99"
71
-rm --force $(PROGS) $(objects) $(DOCS) core
75
maintainer-clean: clean
76
-rm --force --recursive keydir
83
-./mandos-keygen --dir keydir
84
./plugin-runner --plugin-dir=plugins.d \
85
--options-for=password-request:--keydir=keydir
88
./mandos --debug --configdir=.
90
install: install-server install-client
93
mkdir --mode=0755 --parents $(CONFDIR) $(MANDIR)/man5 \
95
install --mode=0755 mandos $(PREFIX)/sbin/mandos
96
install --mode=0644 --target-directory=$(CONFDIR) mandos.conf
97
install --mode=0640 --target-directory=$(CONFDIR) \
99
gzip --best --to-stdout mandos.8 \
100
> $(MANDIR)/man8/mandos.8.gz
101
gzip --best --to-stdout mandos.conf.5 \
102
> $(MANDIR)/man5/mandos.conf.5.gz
103
gzip --best --to-stdout mandos-clients.conf.5 \
104
> $(MANDIR)/man5/mandos-clients.conf.5.gz
106
install-client: all doc /usr/share/initramfs-tools/hooks/.
107
mkdir --mode=0755 --parents $(PREFIX)/lib/mandos $(CONFDIR) \
109
-mkdir --mode=0700 $(PREFIX)/lib/mandos/plugins.d
110
chmod u=rwx,g=,o= $(PREFIX)/lib/mandos/plugins.d
111
install --mode=0755 --target-directory=$(PREFIX)/lib/mandos \
113
install --mode=0755 --target-directory=$(PREFIX)/sbin \
115
install --mode=0755 \
116
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
117
plugins.d/password-prompt
118
install --mode=4755 \
119
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
120
plugins.d/password-request
121
install initramfs-tools-hook \
122
/usr/share/initramfs-tools/hooks/mandos
123
install initramfs-tools-hook-conf \
124
/usr/share/initramfs-tools/conf-hooks.d/mandos
125
install initramfs-tools-script \
126
/usr/share/initramfs-tools/scripts/local-top/mandos
127
gzip --best --to-stdout mandos-keygen.8 \
128
> $(MANDIR)/man8/mandos-keygen.8.gz
129
gzip --best --to-stdout plugin-runner.8mandos \
130
> $(MANDIR)/man8/plugin-runner.8mandos.gz
131
gzip --best --to-stdout plugins.d/password-prompt.8mandos \
132
> $(MANDIR)/man8/password-prompt.8mandos.gz
133
gzip --best --to-stdout plugins.d/password-request.8mandos \
134
> $(MANDIR)/man8/password-request.8mandos.gz
135
-$(PREFIX)/sbin/mandos-keygen
136
update-initramfs -k all -u
138
uninstall: uninstall-server uninstall-client
140
uninstall-server: $(PREFIX)/sbin/mandos
141
-rm --force $(PREFIX)/sbin/mandos \
142
$(MANDIR)/man8/mandos.8.gz \
143
$(MANDIR)/man5/mandos.conf.5.gz \
144
$(MANDIR)/man5/mandos-clients.conf.5.gz
148
# Refuse to uninstall client if /etc/crypttab is explicitly configured
150
! grep --regexp='^ *[^ #].*keyscript=[^,=]*/mandos/' \
152
-rm --force $(PREFIX)/sbin/mandos-keygen \
153
$(PREFIX)/lib/mandos/plugin-runner \
154
$(PREFIX)/lib/mandos/plugins.d/password-prompt \
155
$(PREFIX)/lib/mandos/plugins.d/password-request \
156
/usr/share/initramfs-tools/hooks/mandos \
157
/usr/share/initramfs-tools/conf-hooks.d/mandos \
158
$(MANDIR)/man8/plugin-runner.8mandos.gz \
159
$(MANDIR)/man8/mandos-keygen.8.gz \
160
$(MANDIR)/man8/password-prompt.8mandos.gz \
161
$(MANDIR)/man8/password-request.8mandos.gz
162
-rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
163
$(PREFIX)/lib/mandos $(CONFDIR)
164
update-initramfs -k all -u
166
purge: purge-server purge-client
168
purge-server: uninstall-server
169
-rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf
172
purge-client: uninstall-client
173
-rm --force $(CONFDIR)/seckey.txt $(CONFDIR)/pubkey.txt
174
-rmdir $(CONFDIR) $(CONFDIR)/plugins.d
10
mv -f client client.tmp
11
$(MAKE) client CXXFLAGS="$(CXXFLAGS) -DDEBUG -DCERT_ROOT=\\\"./\\\""
12
mv client client_debug