/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 at bsnet
  • Date: 2010-08-16 04:30:16 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: teddy@fukt.bsnet.se-20100816043016-6wzjp3avb84gaejz
* mandos (main): Bug fix: Don't try to bind to an empty string
                 interface.

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 \
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 -fPIE -pie
13
 
LINK_FORTIFY=-z relro -pie
 
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
14
20
#COVERAGE=--coverage
15
21
OPTIMIZE=-Os
16
22
LANGUAGE=-std=gnu99
17
23
htmldir=man
18
 
version=1.0
 
24
version=1.0.14
19
25
SED=sed
20
26
 
21
27
## Use these settings for a traditional /usr/local install
34
40
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
35
41
##
36
42
 
37
 
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
38
 
GNUTLS_LIBS=$(shell libgnutls-config --libs)
 
43
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
 
44
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
39
45
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
40
46
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
41
 
GPGME_CFLAGS=$(shell gpgme-config --cflags)
42
 
GPGME_LIBS=$(shell gpgme-config --libs)
 
47
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
 
48
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
 
49
        getconf LFS_LDFLAGS)
43
50
 
44
51
# Do not change these two
45
52
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
46
53
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
47
54
        -DVERSION='"$(version)"'
48
 
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY)
 
55
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
49
56
 
50
57
# Commands to format a DocBook <refentry> document into a manual page
51
58
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
70
77
        /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
71
78
        $<; $(HTMLPOST) $@
72
79
# Fix citerefentry links
73
 
HTMLPOST=$(SED) --in-place --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
 
80
HTMLPOST=$(SED) --in-place \
 
81
        --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
74
82
 
75
83
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
76
84
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
77
85
CPROGS=plugin-runner $(PLUGINS)
78
 
PROGS=mandos mandos-keygen $(CPROGS)
 
86
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
79
87
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
80
88
        plugins.d/mandos-client.8mandos \
81
89
        plugins.d/password-prompt.8mandos mandos.conf.5 \
86
94
 
87
95
objects=$(addsuffix .o,$(CPROGS))
88
96
 
89
 
all: $(PROGS)
 
97
all: $(PROGS) mandos.lsm
90
98
 
91
99
doc: $(DOCS)
92
100
 
148
156
 
149
157
# Update all these files with version number $(version)
150
158
common.ent: Makefile
151
 
        $(SED) --in-place --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' $@
 
159
        $(SED) --in-place \
 
160
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
 
161
                $@
152
162
 
153
163
mandos: Makefile
154
 
        $(SED) --in-place --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' $@
 
164
        $(SED) --in-place \
 
165
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
166
                $@
155
167
 
156
168
mandos-keygen: Makefile
157
 
        $(SED) --in-place --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' $@
 
169
        $(SED) --in-place \
 
170
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
 
171
                $@
 
172
 
 
173
mandos-ctl: Makefile
 
174
        $(SED) --in-place \
 
175
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
176
                $@
 
177
 
 
178
mandos.lsm: Makefile
 
179
        $(SED) --in-place \
 
180
                --expression='s/^\(Version:\).*/\1\t$(version)/' \
 
181
                $@
 
182
        $(SED) --in-place \
 
183
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
 
184
                $@
 
185
        $(SED) --in-place \
 
186
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
 
187
                $@
158
188
 
159
189
plugins.d/mandos-client: plugins.d/mandos-client.o
160
190
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
179
209
run-client: all keydir/seckey.txt keydir/pubkey.txt
180
210
        ./plugin-runner --plugin-dir=plugins.d \
181
211
                --config-file=plugin-runner.conf \
182
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
212
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
 
213
                $(CLIENTARGS)
183
214
 
184
215
# Used by run-client
185
216
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
188
219
 
189
220
# Run the server with a local config
190
221
run-server: confdir/mandos.conf confdir/clients.conf
191
 
        ./mandos --debug --configdir=confdir
 
222
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
192
223
 
193
224
# Used by run-server
194
225
confdir/mandos.conf: mandos.conf
202
233
 
203
234
install: install-server install-client-nokey
204
235
 
205
 
install-html: $(htmldocs)
 
236
install-html: html
206
237
        install --directory $(htmldir)
207
238
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
208
239
                $(htmldocs)
260
291
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
261
292
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
262
293
        install initramfs-tools-script \
263
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
 
294
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
264
295
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
265
296
        gzip --best --to-stdout mandos-keygen.8 \
266
297
                > $(MANDIR)/man8/mandos-keygen.8.gz
307
338
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
308
339
                $(INITRAMFSTOOLS)/hooks/mandos \
309
340
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
310
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
 
341
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
311
342
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
312
343
                $(MANDIR)/man8/mandos-keygen.8.gz \
313
344
                $(MANDIR)/man8/password-prompt.8mandos.gz \