/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2010-09-12 03:08:51 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100912030851-f48xth0u8yck0wrv
* mandos-monitor (MandosClientWidget.checker_completed): Do not log a
                                                         successful
                                                         checker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings \
6
6
        -Wconversion -Wstrict-prototypes -Wold-style-definition \
7
7
        -Wpacked -Wnested-externs -Winline -Wvolatile-register-var
8
 
#       -Wunreachable-code
 
8
#       -Wunreachable-code 
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
11
# <http://www.kernel.org/doc/man-pages/online/pages/man7/feature_test_macros.7.html>
23
23
OPTIMIZE=-Os
24
24
LANGUAGE=-std=gnu99
25
25
htmldir=man
26
 
version=1.6.2
 
26
version=1.0.14
27
27
SED=sed
28
28
 
29
 
USER=$(firstword $(subst :, ,$(shell getent passwd _mandos || getent passwd nobody || echo 65534)))
30
 
GROUP=$(firstword $(subst :, ,$(shell getent group _mandos || getent group nobody || echo 65534)))
31
 
 
32
29
## Use these settings for a traditional /usr/local install
33
30
# PREFIX=$(DESTDIR)/usr/local
34
31
# CONFDIR=$(DESTDIR)/etc/mandos
35
32
# KEYDIR=$(DESTDIR)/etc/mandos/keys
36
33
# MANDIR=$(PREFIX)/man
37
34
# INITRAMFSTOOLS=$(DESTDIR)/etc/initramfs-tools
38
 
# STATEDIR=$(DESTDIR)/var/lib/mandos
39
35
##
40
36
 
41
37
## These settings are for a package-type install
44
40
KEYDIR=$(DESTDIR)/etc/keys/mandos
45
41
MANDIR=$(PREFIX)/share/man
46
42
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
47
 
STATEDIR=$(DESTDIR)/var/lib/mandos
48
43
##
49
44
 
50
 
SYSTEMD=$(DESTDIR)$(shell pkg-config systemd --variable=systemdsystemunitdir)
51
 
 
52
45
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
53
46
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
54
47
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
58
51
        getconf LFS_LDFLAGS)
59
52
 
60
53
# Do not change these two
61
 
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
 
54
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
62
55
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
63
56
        -DVERSION='"$(version)"'
64
 
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
 
57
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
65
58
 
66
59
# Commands to format a DocBook <refentry> document into a manual page
67
60
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
70
63
        --param make.single.year.ranges         1 \
71
64
        --param man.output.quietly              1 \
72
65
        --param man.authors.section.enabled     0 \
73
 
        /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
 
66
         /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
74
67
        $(notdir $<); \
75
 
        $(MANPOST) $(notdir $@);\
76
 
        if locale --all 2>/dev/null | grep --regexp='^en_US\.utf8$$' \
77
 
        && type man 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 \
78
 
        man --warnings --encoding=UTF-8 --local-file $(notdir $@); \
79
 
        fi >/dev/null)
 
68
        $(MANPOST) $(notdir $@))
80
69
# DocBook-to-man post-processing to fix a '\n' escape bug
81
70
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
82
71
 
94
83
        --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
95
84
 
96
85
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
97
 
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo \
98
 
        plugins.d/plymouth
 
86
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
99
87
CPROGS=plugin-runner $(PLUGINS)
100
 
PROGS=mandos mandos-keygen mandos-ctl mandos-monitor $(CPROGS)
101
 
DOCS=mandos.8 mandos-keygen.8 mandos-monitor.8 mandos-ctl.8 \
102
 
        mandos.conf.5 mandos-clients.conf.5 plugin-runner.8mandos \
 
88
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
 
89
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
103
90
        plugins.d/mandos-client.8mandos \
104
 
        plugins.d/password-prompt.8mandos plugins.d/usplash.8mandos \
105
 
        plugins.d/splashy.8mandos plugins.d/askpass-fifo.8mandos \
106
 
        plugins.d/plymouth.8mandos intro.8mandos
 
91
        plugins.d/password-prompt.8mandos mandos.conf.5 \
 
92
        plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
 
93
        plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
107
94
 
108
95
htmldocs=$(addsuffix .xhtml,$(DOCS))
109
96
 
130
117
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
131
118
        $(DOCBOOKTOHTML)
132
119
 
133
 
intro.8mandos: intro.xml common.ent legalnotice.xml
134
 
        $(DOCBOOKTOMAN)
135
 
intro.8mandos.xhtml: intro.xml common.ent legalnotice.xml
136
 
        $(DOCBOOKTOHTML)
137
 
 
138
120
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
139
121
                legalnotice.xml
140
122
        $(DOCBOOKTOMAN)
149
131
                 legalnotice.xml
150
132
        $(DOCBOOKTOHTML)
151
133
 
152
 
mandos-monitor.8: mandos-monitor.xml common.ent overview.xml \
153
 
                legalnotice.xml
154
 
        $(DOCBOOKTOMAN)
155
 
mandos-monitor.8.xhtml: mandos-monitor.xml common.ent overview.xml \
156
 
                 legalnotice.xml
157
 
        $(DOCBOOKTOHTML)
158
 
 
159
 
mandos-ctl.8: mandos-ctl.xml common.ent overview.xml \
160
 
                legalnotice.xml
161
 
        $(DOCBOOKTOMAN)
162
 
mandos-ctl.8.xhtml: mandos-ctl.xml common.ent overview.xml \
163
 
                 legalnotice.xml
164
 
        $(DOCBOOKTOHTML)
165
 
 
166
134
mandos.conf.5: mandos.conf.xml common.ent mandos-options.xml \
167
135
                legalnotice.xml
168
136
        $(DOCBOOKTOMAN)
209
177
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
210
178
                $@)
211
179
 
212
 
mandos-monitor: Makefile
213
 
        $(strip $(SED) --in-place \
214
 
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
215
 
                $@)
216
 
 
217
180
mandos.lsm: Makefile
218
181
        $(strip $(SED) --in-place \
219
182
                --expression='s/^\(Version:\).*/\1\t$(version)/' \
226
189
                $@)
227
190
 
228
191
plugins.d/mandos-client: plugins.d/mandos-client.c
229
 
        $(LINK.c) $^ -lrt $(GNUTLS_LIBS) $(AVAHI_LIBS) $(strip\
230
 
                ) $(GPGME_LIBS) $(LOADLIBES) $(LDLIBS) -o $@
 
192
        $(LINK.c) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) $(strip\
 
193
                ) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
231
194
 
232
195
.PHONY : all doc html clean distclean run-client run-server install \
233
196
        install-server install-client uninstall uninstall-server \
239
202
distclean: clean
240
203
mostlyclean: clean
241
204
maintainer-clean: clean
242
 
        -rm --force --recursive keydir confdir statedir
 
205
        -rm --force --recursive keydir confdir
243
206
 
244
207
check:  all
245
208
        ./mandos --check
246
 
        ./mandos-ctl --check
247
209
 
248
210
# Run the client with a local config and key
249
211
run-client: all keydir/seckey.txt keydir/pubkey.txt
260
222
        @echo "###################################################################"
261
223
        ./plugin-runner --plugin-dir=plugins.d \
262
224
                --config-file=plugin-runner.conf \
263
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt,--network-hook-dir=network-hooks.d \
 
225
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
264
226
                $(CLIENTARGS)
265
227
 
266
228
# Used by run-client
269
231
        ./mandos-keygen --dir keydir --force
270
232
 
271
233
# Run the server with a local config
272
 
run-server: confdir/mandos.conf confdir/clients.conf statedir
273
 
        ./mandos --debug --no-dbus --configdir=confdir \
274
 
                --statedir=statedir $(SERVERARGS)
 
234
run-server: confdir/mandos.conf confdir/clients.conf
 
235
        @echo "#################################################################"
 
236
        @echo "# NOTE: Please IGNORE errors about \"No permission to bind to    #"
 
237
        @echo "# interface\" or \"Could not open file u'/var/run/mandos.pid'\" -  #"
 
238
        @echo "# they are harmless and are caused by the server not running as #"
 
239
        @echo "# root.  Do NOT run \"make run-server\" server as root if you did #"
 
240
        @echo "# not also unpack and compile it as root.                       #"
 
241
        @echo "#################################################################"
 
242
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
275
243
 
276
244
# Used by run-server
277
245
confdir/mandos.conf: mandos.conf
282
250
        install --mode=u=rw $< $@
283
251
# Add a client password
284
252
        ./mandos-keygen --dir keydir --password >> $@
285
 
statedir:
286
 
        install --directory statedir
287
253
 
288
254
install: install-server install-client-nokey
289
255
 
294
260
 
295
261
install-server: doc
296
262
        install --directory $(CONFDIR)
297
 
        install --directory --mode=u=rwx --owner=$(USER) \
298
 
                --group=$(GROUP) $(STATEDIR)
299
263
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
300
 
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
301
 
                mandos-ctl
302
 
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
303
 
                mandos-monitor
304
264
        install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
305
265
                mandos.conf
306
266
        install --mode=u=rw --target-directory=$(CONFDIR) \
307
267
                clients.conf
308
 
        install --mode=u=rw,go=r dbus-mandos.conf \
309
 
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
310
268
        install --mode=u=rwx,go=rx init.d-mandos \
311
269
                $(DESTDIR)/etc/init.d/mandos
312
 
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
313
 
                install --mode=u=rw,go=r mandos.service $(SYSTEMD) \
314
 
        fi
315
270
        install --mode=u=rw,go=r default-mandos \
316
271
                $(DESTDIR)/etc/default/mandos
317
272
        if [ -z $(DESTDIR) ]; then \
319
274
        fi
320
275
        gzip --best --to-stdout mandos.8 \
321
276
                > $(MANDIR)/man8/mandos.8.gz
322
 
        gzip --best --to-stdout mandos-monitor.8 \
323
 
                > $(MANDIR)/man8/mandos-monitor.8.gz
324
 
        gzip --best --to-stdout mandos-ctl.8 \
325
 
                > $(MANDIR)/man8/mandos-ctl.8.gz
326
277
        gzip --best --to-stdout mandos.conf.5 \
327
278
                > $(MANDIR)/man5/mandos.conf.5.gz
328
279
        gzip --best --to-stdout mandos-clients.conf.5 \
329
280
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
330
 
        gzip --best --to-stdout intro.8mandos \
331
 
                > $(MANDIR)/man8/intro.8mandos.gz
332
281
 
333
282
install-client-nokey: all doc
334
283
        install --directory $(PREFIX)/lib/mandos $(CONFDIR)
338
287
                install --mode=u=rwx \
339
288
                        --directory "$(CONFDIR)/plugins.d"; \
340
289
        fi
341
 
        install --mode=u=rwx,go=rx --directory \
342
 
                "$(CONFDIR)/network-hooks.d"
343
290
        install --mode=u=rwx,go=rx \
344
291
                --target-directory=$(PREFIX)/lib/mandos plugin-runner
345
292
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
359
306
        install --mode=u=rwxs,go=rx \
360
307
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
361
308
                plugins.d/askpass-fifo
362
 
        install --mode=u=rwxs,go=rx \
363
 
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
364
 
                plugins.d/plymouth
365
309
        install initramfs-tools-hook \
366
310
                $(INITRAMFSTOOLS)/hooks/mandos
367
311
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
373
317
                > $(MANDIR)/man8/mandos-keygen.8.gz
374
318
        gzip --best --to-stdout plugin-runner.8mandos \
375
319
                > $(MANDIR)/man8/plugin-runner.8mandos.gz
 
320
        gzip --best --to-stdout plugins.d/password-prompt.8mandos \
 
321
                > $(MANDIR)/man8/password-prompt.8mandos.gz
376
322
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
377
323
                > $(MANDIR)/man8/mandos-client.8mandos.gz
378
 
        gzip --best --to-stdout plugins.d/password-prompt.8mandos \
379
 
                > $(MANDIR)/man8/password-prompt.8mandos.gz
380
324
        gzip --best --to-stdout plugins.d/usplash.8mandos \
381
325
                > $(MANDIR)/man8/usplash.8mandos.gz
382
326
        gzip --best --to-stdout plugins.d/splashy.8mandos \
383
327
                > $(MANDIR)/man8/splashy.8mandos.gz
384
328
        gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
385
329
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
386
 
        gzip --best --to-stdout plugins.d/plymouth.8mandos \
387
 
                > $(MANDIR)/man8/plymouth.8mandos.gz
388
330
 
389
331
install-client: install-client-nokey
390
332
# Post-installation stuff
396
338
 
397
339
uninstall-server:
398
340
        -rm --force $(PREFIX)/sbin/mandos \
399
 
                $(PREFIX)/sbin/mandos-ctl \
400
 
                $(PREFIX)/sbin/mandos-monitor \
401
341
                $(MANDIR)/man8/mandos.8.gz \
402
 
                $(MANDIR)/man8/mandos-monitor.8.gz \
403
 
                $(MANDIR)/man8/mandos-ctl.8.gz \
404
342
                $(MANDIR)/man5/mandos.conf.5.gz \
405
343
                $(MANDIR)/man5/mandos-clients.conf.5.gz
406
344
        update-rc.d -f mandos remove
418
356
                $(PREFIX)/lib/mandos/plugins.d/usplash \
419
357
                $(PREFIX)/lib/mandos/plugins.d/splashy \
420
358
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
421
 
                $(PREFIX)/lib/mandos/plugins.d/plymouth \
422
359
                $(INITRAMFSTOOLS)/hooks/mandos \
423
360
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
424
361
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
 
362
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
425
363
                $(MANDIR)/man8/mandos-keygen.8.gz \
426
 
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
427
 
                $(MANDIR)/man8/mandos-client.8mandos.gz
428
364
                $(MANDIR)/man8/password-prompt.8mandos.gz \
429
365
                $(MANDIR)/man8/usplash.8mandos.gz \
430
366
                $(MANDIR)/man8/splashy.8mandos.gz \
431
367
                $(MANDIR)/man8/askpass-fifo.8mandos.gz \
432
 
                $(MANDIR)/man8/plymouth.8mandos.gz \
 
368
                $(MANDIR)/man8/mandos-client.8mandos.gz
433
369
        -rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
434
370
                 $(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
435
371
        update-initramfs -k all -u
438
374
 
439
375
purge-server: uninstall-server
440
376
        -rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
441
 
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
442
377
                $(DESTDIR)/etc/default/mandos \
443
378
                $(DESTDIR)/etc/init.d/mandos \
444
 
                $(SYSTEMD)/mandos.service \
445
 
                $(DESTDIR)/run/mandos.pid \
446
379
                $(DESTDIR)/var/run/mandos.pid
447
380
        -rmdir $(CONFDIR)
448
381