/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-04 21:42:02 UTC
  • mfrom: (24.1.89 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080904214202-md7u3n1yqng8vz82
* Makefile (run-client): Do not depend on the key ring files.
  (keydir/secring.gpg, keydir/pubring.gpg): Removed.
  (confdir/mandos.conf): Install with proper mode.
  (confdir/clients.conf): - '' -

* mandos-keygen: Use a temporary directory with key ring files instead
                 of separate temporary key ring files.  Removed
                 "--no-random-seed" and "--no-permission-warning" from
                 all gpg invocations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
OPTIMIZE=-Os
15
15
LANGUAGE=-std=gnu99
16
16
# PREFIX=/usr/local
17
 
PREFIX=/usr
 
17
PREFIX=$(DESTDIR)/usr
18
18
# CONFDIR=/usr/local/lib/mandos
19
 
CONFDIR=/etc/mandos
 
19
CONFDIR=$(DESTDIR)/etc/mandos
20
20
# MANDIR=/usr/local/man
21
 
MANDIR=/usr/share/man
 
21
MANDIR=$(DESTDIR)/usr/share/man
22
22
 
23
23
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
24
24
GNUTLS_LIBS=$(shell libgnutls-config --libs)
33
33
LDFLAGS=$(COVERAGE)
34
34
 
35
35
# Commands to format a DocBook refentry document into a manual page
36
 
DOCBOOKTOMAN=cd $(dir $^); xsltproc --nonet --xinclude \
 
36
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
37
37
        --param man.charmap.use.subset          0 \
38
38
        --param make.year.ranges                1 \
39
39
        --param make.single.year.ranges         1 \
43
43
        $(notdir $<); \
44
44
        $(MANPOST) $(notdir $@)
45
45
# DocBook-to-man post-processing to fix a \n escape bug
46
 
MANPOST=sed --in-place --expression='s,\\en,\en,g;s,\\een,\\en,g'
 
46
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
47
47
 
48
48
PLUGINS=plugins.d/password-prompt plugins.d/password-request
49
49
PROGS=plugin-runner $(PLUGINS)
58
58
 
59
59
doc: $(DOCS)
60
60
 
61
 
%.5: %.xml
62
 
        $(DOCBOOKTOMAN)
63
 
 
64
 
%.8: %.xml
65
 
        $(DOCBOOKTOMAN)
66
 
 
67
 
%.8mandos: %.xml
68
 
        $(DOCBOOKTOMAN)
69
 
 
70
 
mandos.8: mandos.xml mandos-options.xml
71
 
        $(DOCBOOKTOMAN)
72
 
 
73
 
mandos.conf.5: mandos.conf.xml mandos-options.xml
 
61
%.5: %.xml legalnotice.xml
 
62
        $(DOCBOOKTOMAN)
 
63
 
 
64
%.8: %.xml legalnotice.xml
 
65
        $(DOCBOOKTOMAN)
 
66
 
 
67
%.8mandos: %.xml legalnotice.xml
 
68
        $(DOCBOOKTOMAN)
 
69
 
 
70
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
 
71
        $(DOCBOOKTOMAN)
 
72
 
 
73
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
 
74
        $(DOCBOOKTOMAN)
 
75
 
 
76
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
 
77
        $(DOCBOOKTOMAN)
 
78
 
 
79
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.xml
 
80
        $(DOCBOOKTOMAN)
 
81
 
 
82
plugins.d/password-request.8mandos: plugins.d/password-request.xml \
 
83
                                        mandos-options.xml \
 
84
                                        overview.xml legalnotice.xml
74
85
        $(DOCBOOKTOMAN)
75
86
 
76
87
plugins.d/password-request: plugins.d/password-request.o
87
98
distclean: clean
88
99
mostlyclean: clean
89
100
maintainer-clean: clean
90
 
        -rm --force --recursive keydir
 
101
        -rm --force --recursive keydir confdir
91
102
 
92
103
check:
93
104
        ./mandos --check
94
105
 
95
 
run-client: all
96
 
        -mkdir keydir
97
 
        -./mandos-keygen --dir keydir
 
106
# Run the client with a local config and key
 
107
run-client: all keydir/seckey.txt keydir/pubkey.txt
98
108
        ./plugin-runner --plugin-dir=plugins.d \
99
 
                --options-for=password-request:--keydir=keydir
100
 
 
101
 
run-server:
102
 
        ./mandos --debug --configdir=.
 
109
                --config-file=plugin-runner.conf \
 
110
                --options-for=password-request:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
111
 
 
112
# Used by run-client
 
113
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
 
114
        install --directory keydir
 
115
        ./mandos-keygen --dir keydir --force
 
116
 
 
117
# Run the server with a local config
 
118
run-server: confdir/mandos.conf confdir/clients.conf
 
119
        ./mandos --debug --configdir=confdir
 
120
 
 
121
# Used by run-server
 
122
confdir/mandos.conf: mandos.conf
 
123
        install --directory confdir
 
124
        install --mode=0644 $^ $@
 
125
confdir/clients.conf: clients.conf keydir/seckey.txt
 
126
        install --directory confdir
 
127
        install --mode=0640 $< $@
 
128
# Add a client password
 
129
        ./mandos-keygen --dir keydir --password >> $@
103
130
 
104
131
install: install-server install-client
105
132
 
106
133
install-server: doc
107
 
        mkdir --mode=0755 --parents $(CONFDIR) $(MANDIR)/man5 \
 
134
        install --directory --parents $(CONFDIR) $(MANDIR)/man5 \
108
135
                $(MANDIR)/man8
109
136
        install --mode=0755 mandos $(PREFIX)/sbin/mandos
110
137
        install --mode=0644 --target-directory=$(CONFDIR) mandos.conf
118
145
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
119
146
 
120
147
install-client: all doc /usr/share/initramfs-tools/hooks/.
121
 
        mkdir --mode=0755 --parents $(PREFIX)/lib/mandos $(CONFDIR) \
122
 
                $(MANDIR)/man8
123
 
        -mkdir --mode=0700 $(PREFIX)/lib/mandos/plugins.d
 
148
        install --directory --parents $(PREFIX)/lib/mandos \
 
149
                $(CONFDIR) $(MANDIR)/man8
 
150
        install --directory --mode=0700 $(PREFIX)/lib/mandos/plugins.d
124
151
        chmod u=rwx,g=,o= $(PREFIX)/lib/mandos/plugins.d
125
152
        install --mode=0755 --target-directory=$(PREFIX)/lib/mandos \
126
153
                plugin-runner