/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-10-30 16:23:43 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091030162343-1p2a8bf3gc084kc9
* plugins.d/password-prompt.c: Use environment variables and prompt
                               text from cryptsetup 1.1.
* plugins.d/password-prompt.xml (ENVIRONMENT): Document change in
                                               environment variables
                                               used.

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=2 -Wextra -Wfloat-equal -Wundef -Wshadow \
 
3
        -Wstrict-aliasing=1 -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 \
8
8
#       -Wunreachable-code 
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
 
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
 
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIE -pie
13
 
LINK_FORTIFY=-z relro -pie
 
11
# <http://www.kernel.org/doc/man-pages/online/pages/man7/feature_test_macros.7.html>
 
12
# and <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
 
13
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
 
14
LINK_FORTIFY_LD=-z relro -z now
 
15
LINK_FORTIFY=
 
16
ifndef BROKEN_PIE
 
17
FORTIFY += -fPIE
 
18
LINK_FORTIFY_LD += -fPIE
 
19
LINK_FORTIFY += -pie
 
20
endif
14
21
#COVERAGE=--coverage
15
22
OPTIMIZE=-Os
16
23
LANGUAGE=-std=gnu99
17
24
htmldir=man
18
 
version=1.0.2
 
25
version=1.0.14
19
26
SED=sed
20
27
 
21
28
## Use these settings for a traditional /usr/local install
34
41
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
35
42
##
36
43
 
37
 
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
38
 
GNUTLS_LIBS=$(shell libgnutls-config --libs)
 
44
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
 
45
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
39
46
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
40
47
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
41
 
GPGME_CFLAGS=$(shell gpgme-config --cflags)
42
 
GPGME_LIBS=$(shell gpgme-config --libs)
 
48
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
 
49
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
 
50
        getconf LFS_LDFLAGS)
43
51
 
44
52
# Do not change these two
45
53
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
46
54
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
47
55
        -DVERSION='"$(version)"'
48
 
LDFLAGS=$(COVERAGE) $(foreach flag,$(LINK_FORTIFY),-Xlinker $(flag))
 
56
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
49
57
 
50
58
# Commands to format a DocBook <refentry> document into a manual page
51
59
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
76
84
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
77
85
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
78
86
CPROGS=plugin-runner $(PLUGINS)
79
 
PROGS=mandos mandos-keygen mandos-list $(CPROGS)
 
87
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
80
88
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
81
89
        plugins.d/mandos-client.8mandos \
82
90
        plugins.d/password-prompt.8mandos mandos.conf.5 \
150
158
# Update all these files with version number $(version)
151
159
common.ent: Makefile
152
160
        $(SED) --in-place \
153
 
                --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' \
 
161
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
154
162
                $@
155
163
 
156
164
mandos: Makefile
163
171
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
164
172
                $@
165
173
 
166
 
mandos-list: Makefile
 
174
mandos-ctl: Makefile
167
175
        $(SED) --in-place \
168
176
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
169
177
                $@
175
183
        $(SED) --in-place \
176
184
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
177
185
                $@
 
186
        $(SED) --in-place \
 
187
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
 
188
                $@
178
189
 
179
190
plugins.d/mandos-client: plugins.d/mandos-client.o
180
191
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
199
210
run-client: all keydir/seckey.txt keydir/pubkey.txt
200
211
        ./plugin-runner --plugin-dir=plugins.d \
201
212
                --config-file=plugin-runner.conf \
202
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
213
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
 
214
                $(CLIENTARGS)
203
215
 
204
216
# Used by run-client
205
217
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
208
220
 
209
221
# Run the server with a local config
210
222
run-server: confdir/mandos.conf confdir/clients.conf
211
 
        ./mandos --debug --configdir=confdir
 
223
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
212
224
 
213
225
# Used by run-server
214
226
confdir/mandos.conf: mandos.conf
280
292
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
281
293
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
282
294
        install initramfs-tools-script \
283
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
 
295
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
284
296
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
285
297
        gzip --best --to-stdout mandos-keygen.8 \
286
298
                > $(MANDIR)/man8/mandos-keygen.8.gz
327
339
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
328
340
                $(INITRAMFSTOOLS)/hooks/mandos \
329
341
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
330
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
 
342
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
331
343
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
332
344
                $(MANDIR)/man8/mandos-keygen.8.gz \
333
345
                $(MANDIR)/man8/password-prompt.8mandos.gz \