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)
376
370
# Used by run-server
377
371
confdir/mandos.conf: mandos.conf
378
install -D --mode=u=rw,go=r $^ $@
372
install --directory confdir
373
install --mode=u=rw,go=r $^ $@
379
374
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
380
install -D --mode=u=rw $< $@
375
install --directory confdir
376
install --mode=u=rw $< $@
381
377
# Add a client password
382
378
./mandos-keygen --dir keydir --password --no-ssh >> $@
389
385
.PHONY: install-html
390
386
install-html: html
391
install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
387
install --directory $(htmldir)
388
install --mode=u=rw,go=r --target-directory=$(htmldir) \
394
391
.PHONY: install-server
395
392
install-server: doc
393
install --directory $(CONFDIR)
396
394
if install --directory --mode=u=rwx --owner=$(USER) \
397
395
--group=$(GROUP) $(STATEDIR); then \
399
397
elif install --directory --mode=u=rwx $(STATEDIR); then \
400
398
chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
402
if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
403
install -D --mode=u=rw,go=r tmpfiles.d-mandos.conf \
400
if [ "$(TMPFILES)" != "$(DESTDIR)" \
401
-a -d "$(TMPFILES)" ]; then \
402
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
404
403
$(TMPFILES)/mandos.conf; \
406
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
407
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
405
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
406
-a -d "$(SYSUSERS)" ]; then \
407
install --mode=u=rw,go=r sysusers.d-mandos.conf \
408
408
$(SYSUSERS)/mandos.conf; \
410
install --directory $(PREFIX)/sbin
411
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
410
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
413
411
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
415
413
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
417
install --directory $(CONFDIR)
418
415
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
420
417
install --mode=u=rw --target-directory=$(CONFDIR) \
422
install -D --mode=u=rw,go=r dbus-mandos.conf \
423
$(DBUSPOLICYDIR)/mandos.conf
424
install -D --mode=u=rwx,go=rx init.d-mandos \
419
install --mode=u=rw,go=r dbus-mandos.conf \
420
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf
421
install --mode=u=rwx,go=rx init.d-mandos \
425
422
$(DESTDIR)/etc/init.d/mandos
426
if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
427
install -D --mode=u=rw,go=r mandos.service \
423
if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
424
install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
430
install -D --mode=u=rw,go=r default-mandos \
426
install --mode=u=rw,go=r default-mandos \
431
427
$(DESTDIR)/etc/default/mandos
432
428
if [ -z $(DESTDIR) ]; then \
433
429
update-rc.d mandos defaults 25 15;\
435
install --directory $(MANDIR)/man8 $(MANDIR)/man5
436
431
gzip --best --to-stdout mandos.8 \
437
432
> $(MANDIR)/man8/mandos.8.gz
438
433
gzip --best --to-stdout mandos-monitor.8 \
449
444
.PHONY: install-client-nokey
450
445
install-client-nokey: all doc
446
install --directory $(LIBDIR)/mandos $(CONFDIR)
451
447
install --directory --mode=u=rwx $(KEYDIR) \
452
448
$(LIBDIR)/mandos/plugins.d \
453
449
$(LIBDIR)/mandos/plugin-helpers
454
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
455
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
450
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
451
-a -d "$(SYSUSERS)" ]; then \
452
install --mode=u=rw,go=r sysusers.d-mandos.conf \
456
453
$(SYSUSERS)/mandos-client.conf; \
458
455
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
459
install --directory \
460
--mode=u=rwx "$(CONFDIR)/plugins.d" \
456
install --mode=u=rwx \
457
--directory "$(CONFDIR)/plugins.d" \
461
458
"$(CONFDIR)/plugin-helpers"; \
463
install --directory --mode=u=rwx,go=rx \
460
install --mode=u=rwx,go=rx --directory \
464
461
"$(CONFDIR)/network-hooks.d"
465
462
install --mode=u=rwx,go=rx \
466
463
--target-directory=$(LIBDIR)/mandos plugin-runner
467
464
install --mode=u=rwx,go=rx \
468
465
--target-directory=$(LIBDIR)/mandos \
469
466
mandos-to-cryptroot-unlock
470
install --directory $(PREFIX)/sbin
471
467
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
473
469
install --mode=u=rwx,go=rx \
491
487
install --mode=u=rwx,go=rx \
492
488
--target-directory=$(LIBDIR)/mandos/plugin-helpers \
493
489
plugin-helpers/mandos-client-iprouteadddel
494
install -D initramfs-tools-hook \
490
install initramfs-tools-hook \
495
491
$(INITRAMFSTOOLS)/hooks/mandos
496
install -D --mode=u=rw,go=r initramfs-tools-conf \
492
install --mode=u=rw,go=r initramfs-tools-conf \
497
493
$(INITRAMFSTOOLS)/conf.d/mandos-conf
498
install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
494
install --mode=u=rw,go=r initramfs-tools-conf-hook \
499
495
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
500
install -D initramfs-tools-script \
496
install initramfs-tools-script \
501
497
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
502
install -D initramfs-tools-script-stop \
498
install initramfs-tools-script-stop \
503
499
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
504
install -D --mode=u=rw,go=r \
505
--target-directory=$(DRACUTMODULE) \
500
install --directory $(DRACUTMODULE)
501
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
506
502
dracut-module/ask-password-mandos.path \
507
503
dracut-module/ask-password-mandos.service
508
504
install --mode=u=rwxs,go=rx \