291
289
--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
292
# Need to add the GnuTLS, Avahi and GPGME libraries
305
293
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
306
294
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
388
376
# Used by run-server
389
377
confdir/mandos.conf: mandos.conf
390
install -D --mode=u=rw,go=r $^ $@
378
install --directory confdir
379
install --mode=u=rw,go=r $^ $@
391
380
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
392
install -D --mode=u=rw $< $@
381
install --directory confdir
382
install --mode=u=rw $< $@
393
383
# Add a client password
394
384
./mandos-keygen --dir keydir --password --no-ssh >> $@
401
391
.PHONY: install-html
402
392
install-html: html
403
install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
393
install --directory $(htmldir)
394
install --mode=u=rw,go=r --target-directory=$(htmldir) \
406
397
.PHONY: install-server
407
398
install-server: doc
399
install --directory $(CONFDIR)
408
400
if install --directory --mode=u=rwx --owner=$(USER) \
409
401
--group=$(GROUP) $(STATEDIR); then \
411
403
elif install --directory --mode=u=rwx $(STATEDIR); then \
412
404
chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
414
if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
415
install -D --mode=u=rw,go=r tmpfiles.d-mandos.conf \
406
if [ "$(TMPFILES)" != "$(DESTDIR)" \
407
-a -d "$(TMPFILES)" ]; then \
408
install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
416
409
$(TMPFILES)/mandos.conf; \
418
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
419
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
411
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
412
-a -d "$(SYSUSERS)" ]; then \
413
install --mode=u=rw,go=r sysusers.d-mandos.conf \
420
414
$(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) \
416
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
417
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
426
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) \
419
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
428
install --directory $(CONFDIR)
429
421
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
431
423
install --mode=u=rw --target-directory=$(CONFDIR) \
433
install -D --mode=u=rw,go=r dbus-mandos.conf \
425
install --mode=u=rw,go=r dbus-mandos.conf \
434
426
$(DBUSPOLICYDIR)/mandos.conf
435
install -D --mode=u=rwx,go=rx init.d-mandos \
427
install --mode=u=rwx,go=rx init.d-mandos \
436
428
$(DESTDIR)/etc/init.d/mandos
437
if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
438
install -D --mode=u=rw,go=r mandos.service \
429
if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
430
install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
441
install -D --mode=u=rw,go=r default-mandos \
432
install --mode=u=rw,go=r default-mandos \
442
433
$(DESTDIR)/etc/default/mandos
443
434
if [ -z $(DESTDIR) ]; then \
444
435
update-rc.d mandos defaults 25 15;\
446
install --directory $(MANDIR)/man8 $(MANDIR)/man5
447
437
gzip --best --to-stdout mandos.8 \
448
438
> $(MANDIR)/man8/mandos.8.gz
449
439
gzip --best --to-stdout mandos-monitor.8 \
460
450
.PHONY: install-client-nokey
461
451
install-client-nokey: all doc
452
install --directory $(LIBDIR)/mandos $(CONFDIR)
462
453
install --directory --mode=u=rwx $(KEYDIR) \
463
454
$(LIBDIR)/mandos/plugins.d \
464
455
$(LIBDIR)/mandos/plugin-helpers
465
if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
466
install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
456
if [ "$(SYSUSERS)" != "$(DESTDIR)" \
457
-a -d "$(SYSUSERS)" ]; then \
458
install --mode=u=rw,go=r sysusers.d-mandos.conf \
467
459
$(SYSUSERS)/mandos-client.conf; \
469
461
if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
470
install --directory \
471
--mode=u=rwx "$(CONFDIR)/plugins.d" \
462
install --mode=u=rwx \
463
--directory "$(CONFDIR)/plugins.d" \
472
464
"$(CONFDIR)/plugin-helpers"; \
474
install --directory --mode=u=rwx,go=rx \
466
install --mode=u=rwx,go=rx --directory \
475
467
"$(CONFDIR)/network-hooks.d"
476
468
install --mode=u=rwx,go=rx \
477
469
--target-directory=$(LIBDIR)/mandos plugin-runner
478
470
install --mode=u=rwx,go=rx \
479
471
--target-directory=$(LIBDIR)/mandos \
480
472
mandos-to-cryptroot-unlock
481
install --directory $(BINDIR)
482
install --mode=u=rwx,go=rx --target-directory=$(BINDIR) \
473
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
484
475
install --mode=u=rwx,go=rx \
485
476
--target-directory=$(LIBDIR)/mandos/plugins.d \
502
493
install --mode=u=rwx,go=rx \
503
494
--target-directory=$(LIBDIR)/mandos/plugin-helpers \
504
495
plugin-helpers/mandos-client-iprouteadddel
505
install -D initramfs-tools-hook \
496
install initramfs-tools-hook \
506
497
$(INITRAMFSTOOLS)/hooks/mandos
507
install -D --mode=u=rw,go=r initramfs-tools-conf \
498
install --mode=u=rw,go=r initramfs-tools-conf \
508
499
$(INITRAMFSTOOLS)/conf.d/mandos-conf
509
install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
500
install --mode=u=rw,go=r initramfs-tools-conf-hook \
510
501
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
511
install -D initramfs-tools-script \
502
install initramfs-tools-script \
512
503
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
513
install -D initramfs-tools-script-stop \
504
install initramfs-tools-script-stop \
514
505
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
515
install -D --mode=u=rw,go=r \
516
--target-directory=$(DRACUTMODULE) \
506
install --directory $(DRACUTMODULE)
507
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
517
508
dracut-module/ask-password-mandos.path \
518
509
dracut-module/ask-password-mandos.service
519
510
install --mode=u=rwxs,go=rx \