/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2023-02-08 01:38:30 UTC
  • mfrom: (409 release)
  • mto: This revision was merged to the branch mainline in revision 410.
  • Revision ID: teddy@recompile.se-20230208013830-sehn0b55qbhcxaj6
Merge from release branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
# For info about _FORTIFY_SOURCE, see feature_test_macros(7)
31
31
# and <https://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
32
 
FORTIFY:=-fstack-protector-all -fPIC
33
 
CPPFLAGS+=-D_FORTIFY_SOURCE=3
 
32
FORTIFY:=-D_FORTIFY_SOURCE=3 -fstack-protector-all -fPIC
34
33
LINK_FORTIFY_LD:=-z relro -z now
35
34
LINK_FORTIFY:=
36
35
 
42
41
#COVERAGE=--coverage
43
42
OPTIMIZE:=-Os -fno-strict-aliasing
44
43
LANGUAGE:=-std=gnu11
45
 
CPPFLAGS+=-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64
 
44
FEATURES:=-D_FILE_OFFSET_BITS=64
46
45
htmldir:=man
47
46
version:=1.8.16
48
47
SED:=sed
64
63
# DRACUTMODULE:=$(DESTDIR)/usr/lib/dracut/modules.d/90mandos
65
64
# STATEDIR:=$(DESTDIR)/var/lib/mandos
66
65
# LIBDIR:=$(PREFIX)/lib
67
 
# DBUSPOLICYDIR:=$(DESTDIR)/etc/dbus-1/system.d
68
66
##
69
67
 
70
68
## These settings are for a package-type install
85
83
                        break; \
86
84
                fi; \
87
85
        done)
88
 
DBUSPOLICYDIR:=$(DESTDIR)/usr/share/dbus-1/system.d
89
86
##
90
87
 
91
88
SYSTEMD:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
111
108
 
112
109
# Do not change these two
113
110
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
114
 
        $(LANGUAGE) -DVERSION='"$(version)"'
 
111
        $(LANGUAGE) $(FEATURES) -DVERSION='"$(version)"'
115
112
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(strip \
116
113
        ) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
117
114
 
375
372
 
376
373
# Used by run-server
377
374
confdir/mandos.conf: mandos.conf
378
 
        install -D --mode=u=rw,go=r $^ $@
 
375
        install --directory confdir
 
376
        install --mode=u=rw,go=r $^ $@
379
377
confdir/clients.conf: clients.conf keydir/seckey.txt keydir/tls-pubkey.pem
380
 
        install -D --mode=u=rw $< $@
 
378
        install --directory confdir
 
379
        install --mode=u=rw $< $@
381
380
# Add a client password
382
381
        ./mandos-keygen --dir keydir --password --no-ssh >> $@
383
382
statedir:
388
387
 
389
388
.PHONY: install-html
390
389
install-html: html
391
 
        install -D --mode=u=rw,go=r --target-directory=$(htmldir) \
 
390
        install --directory $(htmldir)
 
391
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
392
392
                $(htmldocs)
393
393
 
394
394
.PHONY: install-server
395
395
install-server: doc
 
396
        install --directory $(CONFDIR)
396
397
        if install --directory --mode=u=rwx --owner=$(USER) \
397
398
                --group=$(GROUP) $(STATEDIR); then \
398
399
                :; \
399
400
        elif install --directory --mode=u=rwx $(STATEDIR); then \
400
401
                chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
401
402
        fi
402
 
        if [ "$(TMPFILES)" != "$(DESTDIR)" ]; then \
403
 
                install -D --mode=u=rw,go=r tmpfiles.d-mandos.conf \
 
403
        if [ "$(TMPFILES)" != "$(DESTDIR)" \
 
404
                        -a -d "$(TMPFILES)" ]; then \
 
405
                install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
404
406
                        $(TMPFILES)/mandos.conf; \
405
407
        fi
406
 
        if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
407
 
                install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
 
408
        if [ "$(SYSUSERS)" != "$(DESTDIR)" \
 
409
                        -a -d "$(SYSUSERS)" ]; then \
 
410
                install --mode=u=rw,go=r sysusers.d-mandos.conf \
408
411
                        $(SYSUSERS)/mandos.conf; \
409
412
        fi
410
 
        install --directory $(PREFIX)/sbin
411
 
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
412
 
                mandos
 
413
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
413
414
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
414
415
                mandos-ctl
415
416
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
416
417
                mandos-monitor
417
 
        install --directory $(CONFDIR)
418
418
        install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
419
419
                mandos.conf
420
420
        install --mode=u=rw --target-directory=$(CONFDIR) \
421
421
                clients.conf
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 \
 
422
        install --mode=u=rw,go=r dbus-mandos.conf \
 
423
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
 
424
        install --mode=u=rwx,go=rx init.d-mandos \
425
425
                $(DESTDIR)/etc/init.d/mandos
426
 
        if [ "$(SYSTEMD)" != "$(DESTDIR)" ]; then \
427
 
                install -D --mode=u=rw,go=r mandos.service \
428
 
                        $(SYSTEMD); \
 
426
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
 
427
                install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
429
428
        fi
430
 
        install -D --mode=u=rw,go=r default-mandos \
 
429
        install --mode=u=rw,go=r default-mandos \
431
430
                $(DESTDIR)/etc/default/mandos
432
431
        if [ -z $(DESTDIR) ]; then \
433
432
                update-rc.d mandos defaults 25 15;\
434
433
        fi
435
 
        install --directory $(MANDIR)/man8 $(MANDIR)/man5
436
434
        gzip --best --to-stdout mandos.8 \
437
435
                > $(MANDIR)/man8/mandos.8.gz
438
436
        gzip --best --to-stdout mandos-monitor.8 \
448
446
 
449
447
.PHONY: install-client-nokey
450
448
install-client-nokey: all doc
 
449
        install --directory $(LIBDIR)/mandos $(CONFDIR)
451
450
        install --directory --mode=u=rwx $(KEYDIR) \
452
451
                $(LIBDIR)/mandos/plugins.d \
453
452
                $(LIBDIR)/mandos/plugin-helpers
454
 
        if [ "$(SYSUSERS)" != "$(DESTDIR)" ]; then \
455
 
                install -D --mode=u=rw,go=r sysusers.d-mandos.conf \
 
453
        if [ "$(SYSUSERS)" != "$(DESTDIR)" \
 
454
                        -a -d "$(SYSUSERS)" ]; then \
 
455
                install --mode=u=rw,go=r sysusers.d-mandos.conf \
456
456
                        $(SYSUSERS)/mandos-client.conf; \
457
457
        fi
458
458
        if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
459
 
                install --directory \
460
 
                        --mode=u=rwx "$(CONFDIR)/plugins.d" \
 
459
                install --mode=u=rwx \
 
460
                        --directory "$(CONFDIR)/plugins.d" \
461
461
                        "$(CONFDIR)/plugin-helpers"; \
462
462
        fi
463
 
        install --directory --mode=u=rwx,go=rx \
 
463
        install --mode=u=rwx,go=rx --directory \
464
464
                "$(CONFDIR)/network-hooks.d"
465
465
        install --mode=u=rwx,go=rx \
466
466
                --target-directory=$(LIBDIR)/mandos plugin-runner
467
467
        install --mode=u=rwx,go=rx \
468
468
                --target-directory=$(LIBDIR)/mandos \
469
469
                mandos-to-cryptroot-unlock
470
 
        install --directory $(PREFIX)/sbin
471
470
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
472
471
                mandos-keygen
473
472
        install --mode=u=rwx,go=rx \
491
490
        install --mode=u=rwx,go=rx \
492
491
                --target-directory=$(LIBDIR)/mandos/plugin-helpers \
493
492
                plugin-helpers/mandos-client-iprouteadddel
494
 
        install -D initramfs-tools-hook \
 
493
        install initramfs-tools-hook \
495
494
                $(INITRAMFSTOOLS)/hooks/mandos
496
 
        install -D --mode=u=rw,go=r initramfs-tools-conf \
 
495
        install --mode=u=rw,go=r initramfs-tools-conf \
497
496
                $(INITRAMFSTOOLS)/conf.d/mandos-conf
498
 
        install -D --mode=u=rw,go=r initramfs-tools-conf-hook \
 
497
        install --mode=u=rw,go=r initramfs-tools-conf-hook \
499
498
                $(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
500
 
        install -D initramfs-tools-script \
 
499
        install initramfs-tools-script \
501
500
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
502
 
        install -D initramfs-tools-script-stop \
 
501
        install initramfs-tools-script-stop \
503
502
                $(INITRAMFSTOOLS)/scripts/local-premount/mandos
504
 
        install -D --mode=u=rw,go=r \
505
 
                --target-directory=$(DRACUTMODULE) \
 
503
        install --directory $(DRACUTMODULE)
 
504
        install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
506
505
                dracut-module/ask-password-mandos.path \
507
506
                dracut-module/ask-password-mandos.service
508
507
        install --mode=u=rwxs,go=rx \
511
510
                dracut-module/cmdline-mandos.sh \
512
511
                dracut-module/password-agent
513
512
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
514
 
        install --directory $(MANDIR)/man8
515
513
        gzip --best --to-stdout mandos-keygen.8 \
516
514
                > $(MANDIR)/man8/mandos-keygen.8.gz
517
515
        gzip --best --to-stdout plugin-runner.8mandos \
614
612
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
615
613
                $(DESTDIR)/etc/default/mandos \
616
614
                $(DESTDIR)/etc/init.d/mandos \
 
615
                $(SYSTEMD)/mandos.service \
617
616
                $(DESTDIR)/run/mandos.pid \
618
617
                $(DESTDIR)/var/run/mandos.pid
619
 
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
620
 
                -rm --force -- $(SYSTEMD)/mandos.service; \
621
 
        fi
622
618
        -rmdir $(CONFDIR)
623
619
 
624
620
.PHONY: purge-client