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'
73
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
74
--param make.year.ranges 1 \
75
--param make.single.year.ranges 1 \
76
--param man.output.quietly 1 \
77
--param man.authors.section.enabled 0 \
78
--param citerefentry.link 1 \
80
/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
82
# Fix citerefentry links
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'
58
86
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
59
plugins.d/usplash plugins.d/splashy
60
PROGS=plugin-runner $(PLUGINS)
87
plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
88
CPROGS=plugin-runner $(PLUGINS)
89
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
61
90
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
62
91
plugins.d/mandos-client.8mandos \
63
92
plugins.d/password-prompt.8mandos mandos.conf.5 \
66
objects=$(addsuffix .o,$(PROGS))
93
plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
94
plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
96
htmldocs=$(addsuffix .xhtml,$(DOCS))
98
objects=$(addsuffix .o,$(CPROGS))
100
all: $(PROGS) mandos.lsm
72
%.5: %.xml legalnotice.xml
75
%.8: %.xml legalnotice.xml
78
%.8mandos: %.xml legalnotice.xml
81
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
84
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
87
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
90
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.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
93
149
plugins.d/mandos-client.8mandos: plugins.d/mandos-client.xml \
94
151
mandos-options.xml \
95
152
overview.xml legalnotice.xml
98
plugins.d/mandos-client: plugins.d/mandos-client.o
99
$(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
100
$(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
102
.PHONY : all doc clean distclean run-client run-server install \
154
plugins.d/mandos-client.8mandos.xhtml: plugins.d/mandos-client.xml \
157
overview.xml legalnotice.xml
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 $@
196
.PHONY : all doc html clean distclean run-client run-server install \
103
197
install-server install-client uninstall uninstall-server \
104
198
uninstall-client purge purge-server purge-client
107
-rm --force $(PROGS) $(objects) $(DOCS) core
201
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
110
204
mostlyclean: clean
111
205
maintainer-clean: clean
112
206
-rm --force --recursive keydir confdir
117
211
# Run the client with a local config and key
118
212
run-client: all keydir/seckey.txt keydir/pubkey.txt
119
213
./plugin-runner --plugin-dir=plugins.d \
120
214
--config-file=plugin-runner.conf \
121
--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 \
123
218
# Used by run-client
124
219
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
229
338
$(PREFIX)/lib/mandos/plugins.d/mandos-client \
230
339
$(PREFIX)/lib/mandos/plugins.d/usplash \
231
340
$(PREFIX)/lib/mandos/plugins.d/splashy \
341
$(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
232
342
$(INITRAMFSTOOLS)/hooks/mandos \
233
343
$(INITRAMFSTOOLS)/conf-hooks.d/mandos \
234
$(INITRAMFSTOOLS)/scripts/local-top/mandos \
344
$(INITRAMFSTOOLS)/scripts/init-premount/mandos \
235
345
$(MANDIR)/man8/plugin-runner.8mandos.gz \
236
346
$(MANDIR)/man8/mandos-keygen.8.gz \
237
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 \
238
351
$(MANDIR)/man8/mandos-client.8mandos.gz
239
if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
240
rm --force $(CONFDIR)/plugins.d/README; \
242
352
-rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
243
353
$(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
244
354
update-initramfs -k all -u