/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-02-12 23:17:14 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090212231714-59wxtc7h3w7ss8v6
* plugins.d/mandos-client.c (browse_callback, main): Do not require
                                                     IPv6.
  (main): Removed redundant initialization of "mc".

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 -fPIE
 
13
LINK_FORTIFY_LD=-z relro -fPIE
 
14
LINK_FORTIFY=-pie
14
15
#COVERAGE=--coverage
15
16
OPTIMIZE=-Os
16
17
LANGUAGE=-std=gnu99
17
18
htmldir=man
18
 
version=1.0.2
 
19
version=1.0.5
19
20
SED=sed
20
21
 
21
22
## Use these settings for a traditional /usr/local install
45
46
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
46
47
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
47
48
        -DVERSION='"$(version)"'
48
 
LDFLAGS=$(COVERAGE) $(foreach flag,$(LINK_FORTIFY),-Xlinker $(flag))
 
49
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
49
50
 
50
51
# Commands to format a DocBook <refentry> document into a manual page
51
52
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
76
77
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
77
78
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
78
79
CPROGS=plugin-runner $(PLUGINS)
79
 
PROGS=mandos mandos-keygen mandos-list $(CPROGS)
 
80
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
80
81
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
81
82
        plugins.d/mandos-client.8mandos \
82
83
        plugins.d/password-prompt.8mandos mandos.conf.5 \
163
164
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
164
165
                $@
165
166
 
166
 
mandos-list: Makefile
 
167
mandos-ctl: Makefile
167
168
        $(SED) --in-place \
168
169
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
169
170
                $@
175
176
        $(SED) --in-place \
176
177
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
177
178
                $@
 
179
        $(SED) --in-place \
 
180
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
 
181
                $@
178
182
 
179
183
plugins.d/mandos-client: plugins.d/mandos-client.o
180
184
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
199
203
run-client: all keydir/seckey.txt keydir/pubkey.txt
200
204
        ./plugin-runner --plugin-dir=plugins.d \
201
205
                --config-file=plugin-runner.conf \
202
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
206
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
 
207
                $(CLIENTARGS)
203
208
 
204
209
# Used by run-client
205
210
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
208
213
 
209
214
# Run the server with a local config
210
215
run-server: confdir/mandos.conf confdir/clients.conf
211
 
        ./mandos --debug --configdir=confdir
 
216
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
212
217
 
213
218
# Used by run-server
214
219
confdir/mandos.conf: mandos.conf
280
285
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
281
286
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
282
287
        install initramfs-tools-script \
283
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
 
288
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
284
289
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
285
290
        gzip --best --to-stdout mandos-keygen.8 \
286
291
                > $(MANDIR)/man8/mandos-keygen.8.gz
327
332
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
328
333
                $(INITRAMFSTOOLS)/hooks/mandos \
329
334
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
330
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
 
335
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
331
336
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
332
337
                $(MANDIR)/man8/mandos-keygen.8.gz \
333
338
                $(MANDIR)/man8/password-prompt.8mandos.gz \