101
96
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
102
97
AVAHI_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I avahi-core)
103
98
AVAHI_LIBS:=$(shell $(PKG_CONFIG) --libs avahi-core)
104
GPGME_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gpgme 2>/dev/null \
105
|| gpgme-config --cflags; getconf LFS_CFLAGS)
106
GPGME_LIBS:=$(shell $(PKG_CONFIG) --libs gpgme 2>/dev/null \
107
|| 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; \
108
101
getconf LFS_LDFLAGS)
109
102
LIBNL3_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I libnl-route-3.0)
110
103
LIBNL3_LIBS:=$(shell $(PKG_CONFIG) --libs libnl-route-3.0)
291
284
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
294
# Does the linker support the --no-warn-execstack option?
295
ifeq ($(shell echo 'int main(){}'|$(CC) --language=c /dev/stdin -o /dev/null -Xlinker --no-warn-execstack >/dev/null 2>&1 && echo yes),yes)
296
# These programs use nested functions, which uses an executable stack
297
plugin-runner: LDFLAGS += -Xlinker --no-warn-execstack
298
dracut-module/password-agent: LDFLAGS += -Xlinker --no-warn-execstack
299
plugins.d/password-prompt: LDFLAGS += -Xlinker --no-warn-execstack
300
plugins.d/mandos-client: LDFLAGS += -Xlinker --no-warn-execstack
301
plugins.d/plymouth: LDFLAGS += -Xlinker --no-warn-execstack
304
287
# Need to add the GnuTLS, Avahi and GPGME libraries
305
288
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
306
289
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
388
364
# Used by run-server
389
365
confdir/mandos.conf: mandos.conf
390
install -D --mode=u=rw,go=r $^ $@
366
install --directory confdir
367
install --mode=u=rw,go=r $^ $@
391
368
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
392
install -D --mode=u=rw $< $@
369
install --directory confdir
370
install --mode=u=rw $< $@
393
371
# Add a client password
394
372
./mandos-keygen --dir keydir --password --no-ssh >> $@
401
379
.PHONY: install-html
402
380
install-html: html
403
install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
381
install --directory $(htmldir)
382
install --mode=u=rw,go=r --target-directory=$(htmldir) \
406
385
.PHONY: install-server
407
386
install-server: doc
387
install --directory $(CONFDIR)
408
388
if install --directory --mode=u=rwx --owner=$(USER) \
409
389
--group=$(GROUP) $(STATEDIR); then \
411
391
elif install --directory --mode=u=rwx $(STATEDIR); then \
412
392
chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
414
if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
415
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 \
416
397
$(TMPFILES)/mandos.conf; \
418
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
419
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 \
420
402
$(SYSUSERS)/mandos.conf; \
422
install --directory $(BINDIR)
423
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) mandos
424
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) \
404
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
405
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
426
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) \
407
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
428
install --directory $(CONFDIR)
429
409
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
431
411
install --mode=u=rw --target-directory=$(CONFDIR) \
433
install -D --mode=u=rw,go=r dbus-mandos.conf \
434
$(DBUSPOLICYDIR)/mandos.conf
435
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 \
436
416
$(DESTDIR)/etc/init.d/mandos
437
if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
438
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); \
441
install -D --mode=u=rw,go=r default-mandos \
420
install --mode=u=rw,go=r default-mandos \
442
421
$(DESTDIR)/etc/default/mandos
443
422
if [ -z $(DESTDIR) ]; then \
444
423
update-rc.d mandos defaults 25 15;\
446
install --directory $(MANDIR)/man8 $(MANDIR)/man5
447
425
gzip --best --to-stdout mandos.8 \
448
426
> $(MANDIR)/man8/mandos.8.gz
449
427
gzip --best --to-stdout mandos-monitor.8 \
460
438
.PHONY: install-client-nokey
461
439
install-client-nokey: all doc
440
install --directory $(LIBDIR)/mandos $(CONFDIR)
462
441
install --directory --mode=u=rwx $(KEYDIR) \
463
442
$(LIBDIR)/mandos/plugins.d \
464
443
$(LIBDIR)/mandos/plugin-helpers
465
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
466
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 \
467
447
$(SYSUSERS)/mandos-client.conf; \
469
449
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
470
install --directory \
471
--mode=u=rwx "$(CONFDIR)/plugins.d" \
450
install --mode=u=rwx \
451
--directory "$(CONFDIR)/plugins.d" \
472
452
"$(CONFDIR)/plugin-helpers"; \
474
install --directory --mode=u=rwx,go=rx \
454
install --mode=u=rwx,go=rx --directory \
475
455
"$(CONFDIR)/network-hooks.d"
476
456
install --mode=u=rwx,go=rx \
477
457
--target-directory=$(LIBDIR)/mandos plugin-runner
478
458
install --mode=u=rwx,go=rx \
479
459
--target-directory=$(LIBDIR)/mandos \
480
460
mandos-to-cryptroot-unlock
481
install --directory $(BINDIR)
482
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) \
461
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
484
463
install --mode=u=rwx,go=rx \
485
464
--target-directory=$(LIBDIR)/mandos/plugins.d \
502
481
install --mode=u=rwx,go=rx \
503
482
--target-directory=$(LIBDIR)/mandos/plugin-helpers \
504
483
plugin-helpers/mandos-client-iprouteadddel
505
install -D initramfs-tools-hook \
484
install initramfs-tools-hook \
506
485
$(INITRAMFSTOOLS)/hooks/mandos
507
install -D --mode=u=rw,go=r initramfs-tools-conf \
486
install --mode=u=rw,go=r initramfs-tools-conf \
508
487
$(INITRAMFSTOOLS)/conf.d/mandos-conf
509
install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
488
install --mode=u=rw,go=r initramfs-tools-conf-hook \
510
489
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
511
install -D initramfs-tools-script \
490
install initramfs-tools-script \
512
491
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
513
install -D initramfs-tools-script-stop \
492
install initramfs-tools-script-stop \
514
493
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
515
install -D --mode=u=rw,go=r \
516
--target-directory=$(DRACUTMODULE) \
494
install --directory $(DRACUTMODULE)
495
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
517
496
dracut-module/ask-password-mandos.path \
518
497
dracut-module/ask-password-mandos.service
519
498
install --mode=u=rwxs,go=rx \