30
43
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
33
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
34
GNUTLS_LIBS=$(shell libgnutls-config --libs)
46
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
47
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
35
48
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
36
49
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
37
GPGME_CFLAGS=$(shell gpgme-config --cflags)
38
GPGME_LIBS=$(shell gpgme-config --libs)
50
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
51
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
40
54
# Do not change these two
41
55
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
42
$(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
56
$(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
57
-DVERSION='"$(version)"'
58
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
45
60
# Commands to format a DocBook <refentry> document into a manual page
46
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
61
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
47
62
--param man.charmap.use.subset 0 \
48
63
--param make.year.ranges 1 \
49
64
--param make.single.year.ranges 1 \
51
66
--param man.authors.section.enabled 0 \
52
67
/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
54
$(MANPOST) $(notdir $@)
69
$(MANPOST) $(notdir $@))
55
70
# DocBook-to-man post-processing to fix a '\n' escape bug
56
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
71
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
58
DOCBOOKTOHTML=xsltproc --nonet --xinclude \
73
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
59
74
--param make.year.ranges 1 \
60
75
--param make.single.year.ranges 1 \
61
76
--param man.output.quietly 1 \
63
78
--param citerefentry.link 1 \
65
80
/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
67
82
# Fix citerefentry links
68
HTMLPOST=sed --in-place --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
83
HTMLPOST=$(SED) --in-place \
84
--expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
70
86
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
71
87
plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
72
PROGS=plugin-runner $(PLUGINS)
88
CPROGS=plugin-runner $(PLUGINS)
89
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
73
90
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
74
91
plugins.d/mandos-client.8mandos \
75
92
plugins.d/password-prompt.8mandos mandos.conf.5 \
93
plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
94
plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
78
96
htmldocs=$(addsuffix .xhtml,$(DOCS))
80
objects=$(addsuffix .o,$(PROGS))
98
objects=$(addsuffix .o,$(CPROGS))
100
all: $(PROGS) mandos.lsm
88
%.5: %.xml legalnotice.xml
90
%.5.xhtml: %.xml legalnotice.xml
93
%.8: %.xml legalnotice.xml
95
%.8.xhtml: %.xml legalnotice.xml
98
%.8mandos: %.xml legalnotice.xml
100
%.8mandos.xhtml: %.xml legalnotice.xml
103
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
105
mandos.8.xhtml: mandos.xml mandos-options.xml overview.xml \
109
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
111
mandos-keygen.8.xhtml: mandos-keygen.xml overview.xml legalnotice.xml
114
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
116
mandos.conf.5.xhtml: mandos.conf.xml mandos-options.xml legalnotice.xml
119
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.xml
121
plugin-runner.8mandos.xhtml: plugin-runner.xml overview.xml \
106
%.5: %.xml common.ent legalnotice.xml
108
%.5.xhtml: %.xml common.ent legalnotice.xml
111
%.8: %.xml common.ent legalnotice.xml
113
%.8.xhtml: %.xml common.ent legalnotice.xml
116
%.8mandos: %.xml common.ent legalnotice.xml
118
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
121
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
124
mandos.8.xhtml: mandos.xml common.ent mandos-options.xml \
125
overview.xml legalnotice.xml
128
mandos-keygen.8: mandos-keygen.xml common.ent overview.xml \
131
mandos-keygen.8.xhtml: mandos-keygen.xml common.ent overview.xml \
135
mandos.conf.5: mandos.conf.xml common.ent mandos-options.xml \
138
mandos.conf.5.xhtml: mandos.conf.xml common.ent mandos-options.xml \
142
plugin-runner.8mandos: plugin-runner.xml common.ent overview.xml \
145
plugin-runner.8mandos.xhtml: plugin-runner.xml common.ent \
146
overview.xml legalnotice.xml
125
149
plugins.d/mandos-client.8mandos: plugins.d/mandos-client.xml \
126
151
mandos-options.xml \
127
152
overview.xml legalnotice.xml
129
154
plugins.d/mandos-client.8mandos.xhtml: plugins.d/mandos-client.xml \
130
156
mandos-options.xml \
131
157
overview.xml legalnotice.xml
134
plugins.d/mandos-client: plugins.d/mandos-client.o
135
$(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
136
$(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
160
# Update all these files with version number $(version)
162
$(strip $(SED) --in-place \
163
--expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
167
$(strip $(SED) --in-place \
168
--expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
171
mandos-keygen: Makefile
172
$(strip $(SED) --in-place \
173
--expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
177
$(strip $(SED) --in-place \
178
--expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
182
$(strip $(SED) --in-place \
183
--expression='s/^\(Version:\).*/\1\t$(version)/' \
185
$(strip $(SED) --in-place \
186
--expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
188
$(strip $(SED) --in-place \
189
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
192
plugins.d/mandos-client: plugins.d/mandos-client.c
193
$(LINK.c) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) $(strip\
194
) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
138
196
.PHONY : all doc html clean distclean run-client run-server install \
139
197
install-server install-client uninstall uninstall-server \
140
198
uninstall-client purge purge-server purge-client
143
-rm --force $(PROGS) $(objects) $(htmldocs) $(DOCS) core
201
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
146
204
mostlyclean: clean
147
205
maintainer-clean: clean
148
206
-rm --force --recursive keydir confdir
153
211
# Run the client with a local config and key
154
212
run-client: all keydir/seckey.txt keydir/pubkey.txt
155
213
./plugin-runner --plugin-dir=plugins.d \
156
214
--config-file=plugin-runner.conf \
157
--options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
215
--options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
159
218
# Used by run-client
160
219
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
272
338
$(PREFIX)/lib/mandos/plugins.d/mandos-client \
273
339
$(PREFIX)/lib/mandos/plugins.d/usplash \
274
340
$(PREFIX)/lib/mandos/plugins.d/splashy \
341
$(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
275
342
$(INITRAMFSTOOLS)/hooks/mandos \
276
343
$(INITRAMFSTOOLS)/conf-hooks.d/mandos \
277
$(INITRAMFSTOOLS)/scripts/local-top/mandos \
344
$(INITRAMFSTOOLS)/scripts/init-premount/mandos \
278
345
$(MANDIR)/man8/plugin-runner.8mandos.gz \
279
346
$(MANDIR)/man8/mandos-keygen.8.gz \
280
347
$(MANDIR)/man8/password-prompt.8mandos.gz \
348
$(MANDIR)/man8/usplash.8mandos.gz \
349
$(MANDIR)/man8/splashy.8mandos.gz \
350
$(MANDIR)/man8/askpass-fifo.8mandos.gz \
281
351
$(MANDIR)/man8/mandos-client.8mandos.gz
282
if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
283
rm --force $(CONFDIR)/plugins.d/README; \
285
352
-rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
286
353
$(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
287
354
update-initramfs -k all -u