89
89
--variable=systemdsystemunitdir)
90
90
TMPFILES:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
91
91
--variable=tmpfilesdir)
92
SYSUSERS:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
93
--variable=sysusersdir)
93
95
GNUTLS_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gnutls)
94
96
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
282
287
# Need to add the GnuTLS, Avahi and GPGME libraries
283
plugins.d/mandos-client: plugins.d/mandos-client.c
284
$(LINK.c) $^ $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(strip\
285
) $(GPGME_CFLAGS) $(GNUTLS_LIBS) $(strip\
286
) $(AVAHI_LIBS) $(GPGME_LIBS) $(LOADLIBES) $(strip\
288
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
289
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
290
plugins.d/mandos-client: LDLIBS += $(GNUTLS_LIBS) $(strip \
291
) $(AVAHI_LIBS) $(GPGME_LIBS)
289
293
# Need to add the libnl-route library
290
plugin-helpers/mandos-client-iprouteadddel: plugin-helpers/mandos-client-iprouteadddel.c
291
$(LINK.c) $(LIBNL3_CFLAGS) $^ $(LIBNL3_LIBS) $(strip\
292
) $(LOADLIBES) $(LDLIBS) -o $@
294
plugin-helpers/mandos-client-iprouteadddel: CFLAGS += $(LIBNL3_CFLAGS)
295
plugin-helpers/mandos-client-iprouteadddel: LDLIBS += $(LIBNL3_LIBS)
294
297
# Need to add the GLib and pthread libraries
295
dracut-module/password-agent: dracut-module/password-agent.c
296
$(LINK.c) $(GLIB_CFLAGS) $^ $(GLIB_LIBS) -lpthread $(strip\
297
) $(LOADLIBES) $(LDLIBS) -o $@
299
.PHONY : all doc html clean distclean mostlyclean maintainer-clean \
300
check run-client run-server install install-html \
301
install-server install-client-nokey install-client uninstall \
302
uninstall-server uninstall-client purge purge-server \
298
dracut-module/password-agent: CFLAGS += $(GLIB_CFLAGS)
299
dracut-module/password-agent: LDLIBS += $(GLIB_LIBS) -lpthread
306
303
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
309
308
mostlyclean: clean
309
.PHONY: maintainer-clean
310
310
maintainer-clean: clean
311
311
-rm --force --recursive keydir confdir statedir
315
316
./mandos-ctl --check
319
320
./dracut-module/password-agent --test
321
322
# Run the client with a local config and key
322
324
run-client: all keydir/seckey.txt keydir/pubkey.txt \
323
325
keydir/tls-privkey.pem keydir/tls-pubkey.pem
324
326
@echo '######################################################'
352
354
keydir/seckey.txt keydir/pubkey.txt keydir/tls-privkey.pem keydir/tls-pubkey.pem: mandos-keygen
353
355
install --directory keydir
354
356
./mandos-keygen --dir keydir --force
357
if ! [ -e keydir/tls-privkey.pem ]; then \
358
install --mode=u=rw /dev/null keydir/tls-privkey.pem; \
360
if ! [ -e keydir/tls-pubkey.pem ]; then \
361
install --mode=u=rw /dev/null keydir/tls-pubkey.pem; \
356
364
# Run the server with a local config
357
366
run-server: confdir/mandos.conf confdir/clients.conf statedir
358
367
./mandos --debug --no-dbus --configdir=confdir \
359
368
--statedir=statedir $(SERVERARGS)
371
380
install --directory statedir
373
383
install: install-server install-client-nokey
375
386
install-html: html
376
387
install --directory $(htmldir)
377
388
install --mode=u=rw,go=r --target-directory=$(htmldir) \
391
.PHONY: install-server
380
392
install-server: doc
381
393
install --directory $(CONFDIR)
382
394
if install --directory --mode=u=rwx --owner=$(USER) \
390
402
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
391
403
$(TMPFILES)/mandos.conf; \
405
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
406
-a -d "$(SYSUSERS)" ]; then \
407
install --mode=u=rw,go=r sysusers.d-mandos.conf \
408
$(SYSUSERS)/mandos.conf; \
393
410
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
394
411
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
424
441
gzip --best --to-stdout intro.8mandos \
425
442
> $(MANDIR)/man8/intro.8mandos.gz
444
.PHONY: install-client-nokey
427
445
install-client-nokey: all doc
428
446
install --directory $(LIBDIR)/mandos $(CONFDIR)
429
447
install --directory --mode=u=rwx $(KEYDIR) \
430
448
$(LIBDIR)/mandos/plugins.d \
431
449
$(LIBDIR)/mandos/plugin-helpers
450
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
451
-a -d "$(SYSUSERS)" ]; then \
452
install --mode=u=rw,go=r sysusers.d-mandos.conf \
453
$(SYSUSERS)/mandos-client.conf; \
432
455
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
433
456
install --mode=u=rwx \
434
457
--directory "$(CONFDIR)/plugins.d" \
503
526
gzip --best --to-stdout dracut-module/password-agent.8mandos \
504
527
> $(MANDIR)/man8/password-agent.8mandos.gz
529
.PHONY: install-client
506
530
install-client: install-client-nokey
507
531
# Post-installation stuff
508
532
-$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"