/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: 2008-09-30 07:23:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080930072339-jn15gyrtfpdk2dhx
* .bzrignore: Added "man" directory (created by "make install-html").

* Makefile: Add "common.ent" dependency to all manual pages.
  (htmldir, version, SED): New variables.
  (CFLAGS): Add -D option to define VERSION to $(version).
  (MANPOST, HTMLPOST): Use $(SED).
  (PROGS): Use $(CPROGS)
  (CPROGS): New; C-only programs.
  (objects): Use $(CPROGS).
  (common.ent, mandos, mandos-keygen): New targets; update version
                                       number to $(version).
  (clean): Use $(CPROGS).
  (check): Depend on "all".
  (install-html): Install to $(htmldir).

* common.ent: New file with "version" entity.

* mandos-clients.conf.xml: Use "common.ent".
* mandos-keygen.xml: - '' -
* mandos.conf.xml: - '' -
* mandos.xml: - '' -
* plugin-runner.xml: - '' -
* plugins.d/mandos-client.xml: - '' -
* plugins.d/password-prompt.xml: - '' -

* plugin-runner.c (argp_program_version): Use VERSION.
* plugins.d/mandos-client.c (argp_program_version): - '' -
* plugins.d/password-prompt.c (argp_program_version): - '' -

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
20
13
#COVERAGE=--coverage
21
14
OPTIMIZE=-Os
22
15
LANGUAGE=-std=gnu99
23
16
htmldir=man
24
 
version=1.0.13
 
17
version=1.0
25
18
SED=sed
26
19
 
27
20
## Use these settings for a traditional /usr/local install
40
33
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
41
34
##
42
35
 
43
 
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
44
 
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
 
36
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
 
37
GNUTLS_LIBS=$(shell libgnutls-config --libs)
45
38
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
46
39
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)
 
40
GPGME_CFLAGS=$(shell gpgme-config --cflags)
 
41
GPGME_LIBS=$(shell gpgme-config --libs)
50
42
 
51
43
# Do not change these two
52
44
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
53
45
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
54
46
        -DVERSION='"$(version)"'
55
 
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
 
47
LDFLAGS=$(COVERAGE)
56
48
 
57
49
# Commands to format a DocBook <refentry> document into a manual page
58
50
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
77
69
        /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
78
70
        $<; $(HTMLPOST) $@
79
71
# Fix citerefentry links
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'
 
72
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'
82
73
 
83
74
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
84
75
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
85
76
CPROGS=plugin-runner $(PLUGINS)
86
 
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
 
77
PROGS=mandos mandos-keygen $(CPROGS)
87
78
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
88
79
        plugins.d/mandos-client.8mandos \
89
80
        plugins.d/password-prompt.8mandos mandos.conf.5 \
90
 
        plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
91
 
        plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
 
81
        mandos-clients.conf.5
92
82
 
93
83
htmldocs=$(addsuffix .xhtml,$(DOCS))
94
84
 
95
85
objects=$(addsuffix .o,$(CPROGS))
96
86
 
97
 
all: $(PROGS) mandos.lsm
 
87
all: $(PROGS)
98
88
 
99
89
doc: $(DOCS)
100
90
 
156
146
 
157
147
# Update all these files with version number $(version)
158
148
common.ent: Makefile
159
 
        $(SED) --in-place \
160
 
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
161
 
                $@
 
149
        $(SED) --in-place --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' $@
162
150
 
163
151
mandos: Makefile
164
 
        $(SED) --in-place \
165
 
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
166
 
                $@
 
152
        $(SED) --in-place --expression='s/^\(version = "\)[^"]*"/\1$(version)"/' $@
167
153
 
168
154
mandos-keygen: Makefile
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
 
                $@
 
155
        $(SED) --in-place --expression='s/^\(VERSION="\)[^"]*"/\1$(version)"/' $@
188
156
 
189
157
plugins.d/mandos-client: plugins.d/mandos-client.o
190
158
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
209
177
run-client: all keydir/seckey.txt keydir/pubkey.txt
210
178
        ./plugin-runner --plugin-dir=plugins.d \
211
179
                --config-file=plugin-runner.conf \
212
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
213
 
                $(CLIENTARGS)
 
180
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
214
181
 
215
182
# Used by run-client
216
183
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
219
186
 
220
187
# Run the server with a local config
221
188
run-server: confdir/mandos.conf confdir/clients.conf
222
 
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
 
189
        ./mandos --debug --configdir=confdir
223
190
 
224
191
# Used by run-server
225
192
confdir/mandos.conf: mandos.conf
233
200
 
234
201
install: install-server install-client-nokey
235
202
 
236
 
install-html: html
 
203
install-html: $(htmldocs)
237
204
        install --directory $(htmldir)
238
205
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
239
206
                $(htmldocs)
291
258
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
292
259
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
293
260
        install initramfs-tools-script \
294
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
 
261
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
295
262
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
296
263
        gzip --best --to-stdout mandos-keygen.8 \
297
264
                > $(MANDIR)/man8/mandos-keygen.8.gz
301
268
                > $(MANDIR)/man8/password-prompt.8mandos.gz
302
269
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
303
270
                > $(MANDIR)/man8/mandos-client.8mandos.gz
304
 
        gzip --best --to-stdout plugins.d/usplash.8mandos \
305
 
                > $(MANDIR)/man8/usplash.8mandos.gz
306
 
        gzip --best --to-stdout plugins.d/splashy.8mandos \
307
 
                > $(MANDIR)/man8/splashy.8mandos.gz
308
 
        gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
309
 
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
310
271
 
311
272
install-client: install-client-nokey
312
273
# Post-installation stuff
335
296
                $(PREFIX)/lib/mandos/plugins.d/mandos-client \
336
297
                $(PREFIX)/lib/mandos/plugins.d/usplash \
337
298
                $(PREFIX)/lib/mandos/plugins.d/splashy \
338
 
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
339
299
                $(INITRAMFSTOOLS)/hooks/mandos \
340
300
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
341
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
 
301
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
342
302
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
343
303
                $(MANDIR)/man8/mandos-keygen.8.gz \
344
304
                $(MANDIR)/man8/password-prompt.8mandos.gz \
345
 
                $(MANDIR)/man8/usplash.8mandos.gz \
346
 
                $(MANDIR)/man8/splashy.8mandos.gz \
347
 
                $(MANDIR)/man8/askpass-fifo.8mandos.gz \
348
305
                $(MANDIR)/man8/mandos-client.8mandos.gz
 
306
        if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
 
307
                rm --force $(CONFDIR)/plugins.d/README; \
 
308
        fi
349
309
        -rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
350
310
                 $(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
351
311
        update-initramfs -k all -u