/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-10-03 01:38:05 UTC
  • mfrom: (24.1.170 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20101003013805-ojt18455zatp2ewh
Merge from Björn.

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.2.1
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
 
103
92
        plugins.d/mandos-client.8mandos \
104
93
        plugins.d/password-prompt.8mandos plugins.d/usplash.8mandos \
105
94
        plugins.d/splashy.8mandos plugins.d/askpass-fifo.8mandos \
106
 
        plugins.d/plymouth.8mandos intro.8mandos
 
95
        plugins.d/plymouth.8mandos
107
96
 
108
97
htmldocs=$(addsuffix .xhtml,$(DOCS))
109
98
 
130
119
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
131
120
        $(DOCBOOKTOHTML)
132
121
 
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
122
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
139
123
                legalnotice.xml
140
124
        $(DOCBOOKTOMAN)
226
210
                $@)
227
211
 
228
212
plugins.d/mandos-client: plugins.d/mandos-client.c
229
 
        $(LINK.c) $^ -lrt $(GNUTLS_LIBS) $(AVAHI_LIBS) $(strip\
230
 
                ) $(GPGME_LIBS) $(LOADLIBES) $(LDLIBS) -o $@
 
213
        $(LINK.c) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) $(strip\
 
214
                ) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
231
215
 
232
216
.PHONY : all doc html clean distclean run-client run-server install \
233
217
        install-server install-client uninstall uninstall-server \
239
223
distclean: clean
240
224
mostlyclean: clean
241
225
maintainer-clean: clean
242
 
        -rm --force --recursive keydir confdir statedir
 
226
        -rm --force --recursive keydir confdir
243
227
 
244
228
check:  all
245
229
        ./mandos --check
246
 
        ./mandos-ctl --check
247
230
 
248
231
# Run the client with a local config and key
249
232
run-client: all keydir/seckey.txt keydir/pubkey.txt
260
243
        @echo "###################################################################"
261
244
        ./plugin-runner --plugin-dir=plugins.d \
262
245
                --config-file=plugin-runner.conf \
263
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt,--network-hook-dir=network-hooks.d \
 
246
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
264
247
                $(CLIENTARGS)
265
248
 
266
249
# Used by run-client
269
252
        ./mandos-keygen --dir keydir --force
270
253
 
271
254
# 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)
 
255
run-server: confdir/mandos.conf confdir/clients.conf
 
256
        @echo "#################################################################"
 
257
        @echo "# NOTE: Please IGNORE the error about \"Could not open file      #"
 
258
        @echo "# u'/var/run/mandos.pid'\" -  it is harmless and is caused by    #"
 
259
        @echo "# the server not running as root.  Do NOT run \"make run-server\" #"
 
260
        @echo "# server as root if you didn't also unpack and compile it thus. #"
 
261
        @echo "#################################################################"
 
262
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
275
263
 
276
264
# Used by run-server
277
265
confdir/mandos.conf: mandos.conf
282
270
        install --mode=u=rw $< $@
283
271
# Add a client password
284
272
        ./mandos-keygen --dir keydir --password >> $@
285
 
statedir:
286
 
        install --directory statedir
287
273
 
288
274
install: install-server install-client-nokey
289
275
 
294
280
 
295
281
install-server: doc
296
282
        install --directory $(CONFDIR)
297
 
        install --directory --mode=u=rwx --owner=$(USER) \
298
 
                --group=$(GROUP) $(STATEDIR)
299
283
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
300
284
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
301
285
                mandos-ctl
309
293
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
310
294
        install --mode=u=rwx,go=rx init.d-mandos \
311
295
                $(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
296
        install --mode=u=rw,go=r default-mandos \
316
297
                $(DESTDIR)/etc/default/mandos
317
298
        if [ -z $(DESTDIR) ]; then \
327
308
                > $(MANDIR)/man5/mandos.conf.5.gz
328
309
        gzip --best --to-stdout mandos-clients.conf.5 \
329
310
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
330
 
        gzip --best --to-stdout intro.8mandos \
331
 
                > $(MANDIR)/man8/intro.8mandos.gz
332
311
 
333
312
install-client-nokey: all doc
334
313
        install --directory $(PREFIX)/lib/mandos $(CONFDIR)
338
317
                install --mode=u=rwx \
339
318
                        --directory "$(CONFDIR)/plugins.d"; \
340
319
        fi
341
 
        install --mode=u=rwx,go=rx --directory \
342
 
                "$(CONFDIR)/network-hooks.d"
343
320
        install --mode=u=rwx,go=rx \
344
321
                --target-directory=$(PREFIX)/lib/mandos plugin-runner
345
322
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
441
418
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
442
419
                $(DESTDIR)/etc/default/mandos \
443
420
                $(DESTDIR)/etc/init.d/mandos \
444
 
                $(SYSTEMD)/mandos.service \
445
 
                $(DESTDIR)/run/mandos.pid \
446
421
                $(DESTDIR)/var/run/mandos.pid
447
422
        -rmdir $(CONFDIR)
448
423