/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-07 15:42:11 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080907154211-sc90y38lazc4ewfq
* initramfs-tools-script: Fix permissions of "/tmp" in initrd.

* plugin-runner.c (parse_opt): Ignore empty argument strings.

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 \
8
8
#       -Wunreachable-code 
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
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
 
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
 
12
FORTIFY=-D_FORTIFY_SOURCE=2 # -fstack-protector-all
21
13
#COVERAGE=--coverage
22
14
OPTIMIZE=-Os
23
15
LANGUAGE=-std=gnu99
24
 
htmldir=man
25
 
version=1.0.14
26
 
SED=sed
27
16
 
28
17
## Use these settings for a traditional /usr/local install
29
18
# PREFIX=$(DESTDIR)/usr/local
41
30
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
42
31
##
43
32
 
44
 
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
45
 
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
 
33
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
 
34
GNUTLS_LIBS=$(shell libgnutls-config --libs)
46
35
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
47
36
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
48
 
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
49
 
GPGME_LIBS=$(shell gpgme-config --libs; getconf LFS_LIBS; \
50
 
        getconf LFS_LDFLAGS)
 
37
GPGME_CFLAGS=$(shell gpgme-config --cflags)
 
38
GPGME_LIBS=$(shell gpgme-config --libs)
51
39
 
52
40
# Do not change these two
53
41
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
54
 
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
55
 
        -DVERSION='"$(version)"'
56
 
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
 
42
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
 
43
LDFLAGS=$(COVERAGE)
57
44
 
58
45
# Commands to format a DocBook <refentry> document into a manual page
59
 
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
 
46
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
60
47
        --param man.charmap.use.subset          0 \
61
48
        --param make.year.ranges                1 \
62
49
        --param make.single.year.ranges         1 \
64
51
        --param man.authors.section.enabled     0 \
65
52
         /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
66
53
        $(notdir $<); \
67
 
        $(MANPOST) $(notdir $@))
 
54
        $(MANPOST) $(notdir $@)
68
55
# DocBook-to-man post-processing to fix a '\n' escape bug
69
 
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
70
 
 
71
 
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
72
 
        --param make.year.ranges                1 \
73
 
        --param make.single.year.ranges         1 \
74
 
        --param man.output.quietly              1 \
75
 
        --param man.authors.section.enabled     0 \
76
 
        --param citerefentry.link               1 \
77
 
        --output $@ \
78
 
        /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
79
 
        $<; $(HTMLPOST) $@)
80
 
# Fix citerefentry links
81
 
HTMLPOST=$(SED) --in-place \
82
 
        --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
83
 
 
84
 
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
85
 
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
86
 
CPROGS=plugin-runner $(PLUGINS)
87
 
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
 
56
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
 
57
 
 
58
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client
 
59
PROGS=plugin-runner $(PLUGINS)
88
60
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
89
61
        plugins.d/mandos-client.8mandos \
90
62
        plugins.d/password-prompt.8mandos mandos.conf.5 \
91
 
        plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
92
 
        plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
93
 
 
94
 
htmldocs=$(addsuffix .xhtml,$(DOCS))
95
 
 
96
 
objects=$(addsuffix .o,$(CPROGS))
97
 
 
98
 
all: $(PROGS) mandos.lsm
 
63
        mandos-clients.conf.5
 
64
 
 
65
objects=$(addsuffix .o,$(PROGS))
 
66
 
 
67
all: $(PROGS)
99
68
 
100
69
doc: $(DOCS)
101
70
 
102
 
html: $(htmldocs)
103
 
 
104
 
%.5: %.xml common.ent legalnotice.xml
105
 
        $(DOCBOOKTOMAN)
106
 
%.5.xhtml: %.xml common.ent legalnotice.xml
107
 
        $(DOCBOOKTOHTML)
108
 
 
109
 
%.8: %.xml common.ent legalnotice.xml
110
 
        $(DOCBOOKTOMAN)
111
 
%.8.xhtml: %.xml common.ent legalnotice.xml
112
 
        $(DOCBOOKTOHTML)
113
 
 
114
 
%.8mandos: %.xml common.ent legalnotice.xml
115
 
        $(DOCBOOKTOMAN)
116
 
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
117
 
        $(DOCBOOKTOHTML)
118
 
 
119
 
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
120
 
                legalnotice.xml
121
 
        $(DOCBOOKTOMAN)
122
 
mandos.8.xhtml: mandos.xml common.ent mandos-options.xml \
123
 
                overview.xml legalnotice.xml
124
 
        $(DOCBOOKTOHTML)
125
 
 
126
 
mandos-keygen.8: mandos-keygen.xml common.ent overview.xml \
127
 
                legalnotice.xml
128
 
        $(DOCBOOKTOMAN)
129
 
mandos-keygen.8.xhtml: mandos-keygen.xml common.ent overview.xml \
130
 
                 legalnotice.xml
131
 
        $(DOCBOOKTOHTML)
132
 
 
133
 
mandos.conf.5: mandos.conf.xml common.ent mandos-options.xml \
134
 
                legalnotice.xml
135
 
        $(DOCBOOKTOMAN)
136
 
mandos.conf.5.xhtml: mandos.conf.xml common.ent mandos-options.xml \
137
 
                legalnotice.xml
138
 
        $(DOCBOOKTOHTML)
139
 
 
140
 
plugin-runner.8mandos: plugin-runner.xml common.ent overview.xml \
141
 
                legalnotice.xml
142
 
        $(DOCBOOKTOMAN)
143
 
plugin-runner.8mandos.xhtml: plugin-runner.xml common.ent \
144
 
                overview.xml legalnotice.xml
145
 
        $(DOCBOOKTOHTML)
 
71
%.5: %.xml legalnotice.xml
 
72
        $(DOCBOOKTOMAN)
 
73
 
 
74
%.8: %.xml legalnotice.xml
 
75
        $(DOCBOOKTOMAN)
 
76
 
 
77
%.8mandos: %.xml legalnotice.xml
 
78
        $(DOCBOOKTOMAN)
 
79
 
 
80
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
 
81
        $(DOCBOOKTOMAN)
 
82
 
 
83
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
 
84
        $(DOCBOOKTOMAN)
 
85
 
 
86
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
 
87
        $(DOCBOOKTOMAN)
 
88
 
 
89
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.xml
 
90
        $(DOCBOOKTOMAN)
146
91
 
147
92
plugins.d/mandos-client.8mandos: plugins.d/mandos-client.xml \
148
 
                                        common.ent \
149
93
                                        mandos-options.xml \
150
94
                                        overview.xml legalnotice.xml
151
95
        $(DOCBOOKTOMAN)
152
 
plugins.d/mandos-client.8mandos.xhtml: plugins.d/mandos-client.xml \
153
 
                                        common.ent \
154
 
                                        mandos-options.xml \
155
 
                                        overview.xml legalnotice.xml
156
 
        $(DOCBOOKTOHTML)
157
 
 
158
 
# Update all these files with version number $(version)
159
 
common.ent: Makefile
160
 
        $(strip $(SED) --in-place \
161
 
                --expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
162
 
                $@)
163
 
 
164
 
mandos: Makefile
165
 
        $(strip $(SED) --in-place \
166
 
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
167
 
                $@)
168
 
 
169
 
mandos-keygen: Makefile
170
 
        $(strip $(SED) --in-place \
171
 
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
172
 
                $@)
173
 
 
174
 
mandos-ctl: Makefile
175
 
        $(strip $(SED) --in-place \
176
 
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
177
 
                $@)
178
 
 
179
 
mandos.lsm: Makefile
180
 
        $(strip $(SED) --in-place \
181
 
                --expression='s/^\(Version:\).*/\1\t$(version)/' \
182
 
                $@)
183
 
        $(strip $(SED) --in-place \
184
 
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
185
 
                $@)
186
 
        $(strip $(SED) --in-place \
187
 
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
188
 
                $@)
189
 
 
190
 
plugins.d/mandos-client: plugins.d/mandos-client.c
191
 
        $(LINK.c) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) $(strip\
192
 
                ) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
193
 
 
194
 
.PHONY : all doc html clean distclean run-client run-server install \
 
96
 
 
97
plugins.d/mandos-client: plugins.d/mandos-client.o
 
98
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
 
99
                $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
100
 
 
101
.PHONY : all doc clean distclean run-client run-server install \
195
102
        install-server install-client uninstall uninstall-server \
196
103
        uninstall-client purge purge-server purge-client
197
104
 
198
105
clean:
199
 
        -rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
 
106
        -rm --force $(PROGS) $(objects) $(DOCS) core
200
107
 
201
108
distclean: clean
202
109
mostlyclean: clean
203
110
maintainer-clean: clean
204
111
        -rm --force --recursive keydir confdir
205
112
 
206
 
check:  all
 
113
check:
207
114
        ./mandos --check
208
115
 
209
116
# Run the client with a local config and key
210
117
run-client: all keydir/seckey.txt keydir/pubkey.txt
211
118
        ./plugin-runner --plugin-dir=plugins.d \
212
119
                --config-file=plugin-runner.conf \
213
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
214
 
                $(CLIENTARGS)
 
120
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
215
121
 
216
122
# Used by run-client
217
123
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
220
126
 
221
127
# Run the server with a local config
222
128
run-server: confdir/mandos.conf confdir/clients.conf
223
 
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
 
129
        ./mandos --debug --configdir=confdir
224
130
 
225
131
# Used by run-server
226
132
confdir/mandos.conf: mandos.conf
232
138
# Add a client password
233
139
        ./mandos-keygen --dir keydir --password >> $@
234
140
 
235
 
install: install-server install-client-nokey
236
 
 
237
 
install-html: html
238
 
        install --directory $(htmldir)
239
 
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
240
 
                $(htmldocs)
 
141
install: install-server install-client
241
142
 
242
143
install-server: doc
243
 
        install --directory $(CONFDIR)
 
144
        install --directory $(CONFDIR) $(MANDIR)/man5 \
 
145
                $(MANDIR)/man8
244
146
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
245
147
        install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
246
148
                mandos.conf
250
152
                $(DESTDIR)/etc/init.d/mandos
251
153
        install --mode=u=rw,go=r default-mandos \
252
154
                $(DESTDIR)/etc/default/mandos
253
 
        if [ -z $(DESTDIR) ]; then \
254
 
                update-rc.d mandos defaults 25 15;\
255
 
        fi
 
155
        update-rc.d mandos defaults
256
156
        gzip --best --to-stdout mandos.8 \
257
157
                > $(MANDIR)/man8/mandos.8.gz
258
158
        gzip --best --to-stdout mandos.conf.5 \
260
160
        gzip --best --to-stdout mandos-clients.conf.5 \
261
161
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
262
162
 
263
 
install-client-nokey: all doc
264
 
        install --directory $(PREFIX)/lib/mandos $(CONFDIR)
265
 
        install --directory --mode=u=rwx $(KEYDIR) \
 
163
install-client: all doc $(INITRAMFSTOOLS)/hooks/.
 
164
        install --directory $(PREFIX)/lib/mandos $(CONFDIR) \
 
165
                $(MANDIR)/man8
 
166
        install --directory --mode=u=rwx $(KEYDIR)
 
167
        install --directory --mode=u=rwx \
266
168
                $(PREFIX)/lib/mandos/plugins.d
267
169
        if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
268
170
                install --mode=u=rwx \
269
171
                        --directory "$(CONFDIR)/plugins.d"; \
 
172
                install --mode=u=rw,go=r etc-plugins.d-README \
 
173
                        $(CONFDIR)/plugins.d/README ; \
270
174
        fi
271
175
        install --mode=u=rwx,go=rx \
272
176
                --target-directory=$(PREFIX)/lib/mandos plugin-runner
278
182
        install --mode=u=rwxs,go=rx \
279
183
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
280
184
                plugins.d/mandos-client
281
 
        install --mode=u=rwxs,go=rx \
 
185
        install --mode=u=rwx,go=rx \
282
186
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
283
187
                plugins.d/usplash
284
 
        install --mode=u=rwxs,go=rx \
285
 
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
286
 
                plugins.d/splashy
287
 
        install --mode=u=rwxs,go=rx \
288
 
                --target-directory=$(PREFIX)/lib/mandos/plugins.d \
289
 
                plugins.d/askpass-fifo
290
188
        install initramfs-tools-hook \
291
189
                $(INITRAMFSTOOLS)/hooks/mandos
292
 
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
 
190
        install initramfs-tools-hook-conf \
293
191
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
294
192
        install initramfs-tools-script \
295
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
 
193
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
296
194
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
297
195
        gzip --best --to-stdout mandos-keygen.8 \
298
196
                > $(MANDIR)/man8/mandos-keygen.8.gz
302
200
                > $(MANDIR)/man8/password-prompt.8mandos.gz
303
201
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
304
202
                > $(MANDIR)/man8/mandos-client.8mandos.gz
305
 
        gzip --best --to-stdout plugins.d/usplash.8mandos \
306
 
                > $(MANDIR)/man8/usplash.8mandos.gz
307
 
        gzip --best --to-stdout plugins.d/splashy.8mandos \
308
 
                > $(MANDIR)/man8/splashy.8mandos.gz
309
 
        gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
310
 
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
311
 
 
312
 
install-client: install-client-nokey
313
203
# Post-installation stuff
314
204
        -$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"
315
205
        update-initramfs -k all -u
335
225
                $(PREFIX)/lib/mandos/plugins.d/password-prompt \
336
226
                $(PREFIX)/lib/mandos/plugins.d/mandos-client \
337
227
                $(PREFIX)/lib/mandos/plugins.d/usplash \
338
 
                $(PREFIX)/lib/mandos/plugins.d/splashy \
339
 
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
340
228
                $(INITRAMFSTOOLS)/hooks/mandos \
341
229
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
342
 
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
 
230
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
343
231
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
344
232
                $(MANDIR)/man8/mandos-keygen.8.gz \
345
233
                $(MANDIR)/man8/password-prompt.8mandos.gz \
346
 
                $(MANDIR)/man8/usplash.8mandos.gz \
347
 
                $(MANDIR)/man8/splashy.8mandos.gz \
348
 
                $(MANDIR)/man8/askpass-fifo.8mandos.gz \
349
234
                $(MANDIR)/man8/mandos-client.8mandos.gz
 
235
        if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
 
236
                rm --force $(CONFDIR)/plugins.d/README; \
 
237
        fi
350
238
        -rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
351
239
                 $(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
352
240
        update-initramfs -k all -u