99
96
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
100
97
AVAHI_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I avahi-core)
101
98
AVAHI_LIBS:=$(shell $(PKG_CONFIG) --libs avahi-core)
102
GPGME_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gpgme 2>/dev/null \
103
|| gpgme-config --cflags; getconf LFS_CFLAGS)
104
GPGME_LIBS:=$(shell $(PKG_CONFIG) --libs gpgme 2>/dev/null \
105
|| gpgme-config --libs; getconf LFS_LIBS; \
99
GPGME_CFLAGS:=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
100
GPGME_LIBS:=$(shell gpgme-config --libs; getconf LFS_LIBS; \
106
101
getconf LFS_LDFLAGS)
107
102
LIBNL3_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I libnl-route-3.0)
108
103
LIBNL3_LIBS:=$(shell $(PKG_CONFIG) --libs libnl-route-3.0)
289
284
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
292
# Uses nested functions
293
plugin-runner: LDFLAGS += -Xlinker --no-warn-execstack
294
dracut-module/password-agent: LDFLAGS += -Xlinker --no-warn-execstack
295
plugins.d/password-prompt: LDFLAGS += -Xlinker --no-warn-execstack
296
plugins.d/mandos-client: LDFLAGS += -Xlinker --no-warn-execstack
297
plugins.d/plymouth: LDFLAGS += -Xlinker --no-warn-execstack
299
287
# Need to add the GnuTLS, Avahi and GPGME libraries
300
288
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
301
289
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
367
354
keydir/seckey.txt keydir/pubkey.txt keydir/tls-privkey.pem keydir/tls-pubkey.pem: mandos-keygen
368
355
install --directory keydir
369
356
./mandos-keygen --dir keydir --force
370
if ! [ -e keydir/tls-privkey.pem ]; then \
371
install --mode=u=rw /dev/null keydir/tls-privkey.pem; \
373
if ! [ -e keydir/tls-pubkey.pem ]; then \
374
install --mode=u=rw /dev/null keydir/tls-pubkey.pem; \
377
358
# Run the server with a local config
378
359
.PHONY: run-server
383
364
# Used by run-server
384
365
confdir/mandos.conf: mandos.conf
385
install -D --mode=u=rw,go=r $^ $@
366
install --directory confdir
367
install --mode=u=rw,go=r $^ $@
386
368
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
387
install -D --mode=u=rw $< $@
369
install --directory confdir
370
install --mode=u=rw $< $@
388
371
# Add a client password
389
372
./mandos-keygen --dir keydir --password --no-ssh >> $@
396
379
.PHONY: install-html
397
380
install-html: html
398
install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
381
install --directory $(htmldir)
382
install --mode=u=rw,go=r --target-directory=$(htmldir) \
401
385
.PHONY: install-server
402
386
install-server: doc
387
install --directory $(CONFDIR)
403
388
if install --directory --mode=u=rwx --owner=$(USER) \
404
389
--group=$(GROUP) $(STATEDIR); then \
406
391
elif install --directory --mode=u=rwx $(STATEDIR); then \
407
392
chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
409
if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
410
install -D --mode=u=rw,go=r tmpfiles.d-mandos.conf \
394
if [ "$(TMPFILES)" != "$(DESTDIR)" \
395
-a -d "$(TMPFILES)" ]; then \
396
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
411
397
$(TMPFILES)/mandos.conf; \
413
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
414
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
399
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
400
-a -d "$(SYSUSERS)" ]; then \
401
install --mode=u=rw,go=r sysusers.d-mandos.conf \
415
402
$(SYSUSERS)/mandos.conf; \
417
install --directory $(PREFIX)/sbin
418
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
404
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
420
405
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
422
407
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
424
install --directory $(CONFDIR)
425
409
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
427
411
install --mode=u=rw --target-directory=$(CONFDIR) \
429
install -D --mode=u=rw,go=r dbus-mandos.conf \
430
$(DBUSPOLICYDIR)/mandos.conf
431
install -D --mode=u=rwx,go=rx init.d-mandos \
413
install --mode=u=rw,go=r dbus-mandos.conf \
414
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf
415
install --mode=u=rwx,go=rx init.d-mandos \
432
416
$(DESTDIR)/etc/init.d/mandos
433
if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
434
install -D --mode=u=rw,go=r mandos.service \
417
if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
418
install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
437
install -D --mode=u=rw,go=r default-mandos \
420
install --mode=u=rw,go=r default-mandos \
438
421
$(DESTDIR)/etc/default/mandos
439
422
if [ -z $(DESTDIR) ]; then \
440
423
update-rc.d mandos defaults 25 15;\
442
install --directory $(MANDIR)/man8 $(MANDIR)/man5
443
425
gzip --best --to-stdout mandos.8 \
444
426
> $(MANDIR)/man8/mandos.8.gz
445
427
gzip --best --to-stdout mandos-monitor.8 \
456
438
.PHONY: install-client-nokey
457
439
install-client-nokey: all doc
440
install --directory $(LIBDIR)/mandos $(CONFDIR)
458
441
install --directory --mode=u=rwx $(KEYDIR) \
459
442
$(LIBDIR)/mandos/plugins.d \
460
443
$(LIBDIR)/mandos/plugin-helpers
461
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
462
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
444
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
445
-a -d "$(SYSUSERS)" ]; then \
446
install --mode=u=rw,go=r sysusers.d-mandos.conf \
463
447
$(SYSUSERS)/mandos-client.conf; \
465
449
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
466
install --directory \
467
--mode=u=rwx "$(CONFDIR)/plugins.d" \
450
install --mode=u=rwx \
451
--directory "$(CONFDIR)/plugins.d" \
468
452
"$(CONFDIR)/plugin-helpers"; \
470
install --directory --mode=u=rwx,go=rx \
454
install --mode=u=rwx,go=rx --directory \
471
455
"$(CONFDIR)/network-hooks.d"
472
456
install --mode=u=rwx,go=rx \
473
457
--target-directory=$(LIBDIR)/mandos plugin-runner
474
458
install --mode=u=rwx,go=rx \
475
459
--target-directory=$(LIBDIR)/mandos \
476
460
mandos-to-cryptroot-unlock
477
install --directory $(PREFIX)/sbin
478
461
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
480
463
install --mode=u=rwx,go=rx \
498
481
install --mode=u=rwx,go=rx \
499
482
--target-directory=$(LIBDIR)/mandos/plugin-helpers \
500
483
plugin-helpers/mandos-client-iprouteadddel
501
install -D initramfs-tools-hook \
484
install initramfs-tools-hook \
502
485
$(INITRAMFSTOOLS)/hooks/mandos
503
install -D --mode=u=rw,go=r initramfs-tools-conf \
486
install --mode=u=rw,go=r initramfs-tools-conf \
504
487
$(INITRAMFSTOOLS)/conf.d/mandos-conf
505
install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
488
install --mode=u=rw,go=r initramfs-tools-conf-hook \
506
489
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
507
install -D initramfs-tools-script \
490
install initramfs-tools-script \
508
491
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
509
install -D initramfs-tools-script-stop \
492
install initramfs-tools-script-stop \
510
493
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
511
install -D --mode=u=rw,go=r \
512
--target-directory=$(DRACUTMODULE) \
494
install --directory $(DRACUTMODULE)
495
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
513
496
dracut-module/ask-password-mandos.path \
514
497
dracut-module/ask-password-mandos.service
515
498
install --mode=u=rwxs,go=rx \