/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: 2009-01-08 03:54:06 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090108035406-01uqkv9xqgxlnw7c
Change the default value of the "checker" option command to make the
checker command be run-time dependent on the "host" client attribute
instead of reading it only once on startup:

* clients.conf (checker): Changed default commented-out value to
                          "fping -q -- %%(host)s".
* mandos (main): Changed default value for the "checker" config option
                 to "fping -q -- %%(host)s".
* mandos-clients.conf.xml (OPTIONS): Document changed default value.
  (EXAMPLE): Changed value of "checker".

* plugins.d/password-prompt.c: Whitespace changes only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
WARN=-O -Wall -Wformat=2 -Winit-self -Wmissing-include-dirs \
2
2
        -Wswitch-default -Wswitch-enum -Wunused-parameter \
3
 
        -Wstrict-aliasing=1 -Wextra -Wfloat-equal -Wundef -Wshadow \
 
3
        -Wstrict-aliasing=2 -Wextra -Wfloat-equal -Wundef -Wshadow \
4
4
        -Wunsafe-loop-optimizations -Wpointer-arith \
5
5
        -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings \
6
6
        -Wconversion -Wstrict-prototypes -Wold-style-definition \
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
 
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
13
 
LINK_FORTIFY_LD=-z relro -z now
14
 
LINK_FORTIFY=
15
 
ifndef BROKEN_PIE
16
 
FORTIFY += -fPIE
17
 
LINK_FORTIFY_LD += -fPIE
18
 
LINK_FORTIFY += -pie
19
 
endif
 
12
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIE -pie
 
13
LINK_FORTIFY=-z relro -pie
20
14
#COVERAGE=--coverage
21
15
OPTIMIZE=-Os
22
16
LANGUAGE=-std=gnu99
23
17
htmldir=man
24
 
version=1.0.13
 
18
version=1.0.3
25
19
SED=sed
26
20
 
27
21
## Use these settings for a traditional /usr/local install
40
34
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
41
35
##
42
36
 
43
 
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
44
 
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
 
37
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
 
38
GNUTLS_LIBS=$(shell libgnutls-config --libs)
45
39
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
46
40
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
47
 
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
48
 
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
49
 
        getconf LFS_LDFLAGS)
 
41
GPGME_CFLAGS=$(shell gpgme-config --cflags)
 
42
GPGME_LIBS=$(shell gpgme-config --libs)
50
43
 
51
44
# Do not change these two
52
45
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
53
46
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
54
47
        -DVERSION='"$(version)"'
55
 
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
 
48
LDFLAGS=$(COVERAGE) $(foreach flag,$(LINK_FORTIFY),-Xlinker $(flag))
56
49
 
57
50
# Commands to format a DocBook <refentry> document into a manual page
58
51
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
83
76
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
84
77
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
85
78
CPROGS=plugin-runner $(PLUGINS)
86
 
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
 
79
PROGS=mandos mandos-keygen mandos-list $(CPROGS)
87
80
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
88
81
        plugins.d/mandos-client.8mandos \
89
82
        plugins.d/password-prompt.8mandos mandos.conf.5 \
157
150
# Update all these files with version number $(version)
158
151
common.ent: Makefile
159
152
        $(SED) --in-place \
160
 
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
 
153
                --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' \
161
154
                $@
162
155
 
163
156
mandos: Makefile
170
163
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
171
164
                $@
172
165
 
173
 
mandos-ctl: Makefile
 
166
mandos-list: Makefile
174
167
        $(SED) --in-place \
175
168
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
176
169
                $@
209
202
run-client: all keydir/seckey.txt keydir/pubkey.txt
210
203
        ./plugin-runner --plugin-dir=plugins.d \
211
204
                --config-file=plugin-runner.conf \
212
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
213
 
                $(CLIENTARGS)
 
205
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
214
206
 
215
207
# Used by run-client
216
208
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
219
211
 
220
212
# Run the server with a local config
221
213
run-server: confdir/mandos.conf confdir/clients.conf
222
 
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
 
214
        ./mandos --debug --configdir=confdir
223
215
 
224
216
# Used by run-server
225
217
confdir/mandos.conf: mandos.conf
291
283
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
292
284
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
293
285
        install initramfs-tools-script \
294
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
 
286
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
295
287
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
296
288
        gzip --best --to-stdout mandos-keygen.8 \
297
289
                > $(MANDIR)/man8/mandos-keygen.8.gz
338
330
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
339
331
                $(INITRAMFSTOOLS)/hooks/mandos \
340
332
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
341
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
 
333
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
342
334
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
343
335
                $(MANDIR)/man8/mandos-keygen.8.gz \
344
336
                $(MANDIR)/man8/password-prompt.8mandos.gz \