/mandos/trunk

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

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2023-02-11 06:58:15 UTC
  • Revision ID: teddy@recompile.se-20230211065815-jtffi61tbdrgr875
Suppress warnings

Suppress warnings about mlock()ing uninitialized memory and reading an
ievent struct.

* dracut-module/password-agent.c (send_password_to_socket): Suppress
  "-Wmaybe-uninitialized" when mlock()ing password send buffer.
  (test_read_inotify_event_IN_DELETE_badname): When reading from
    a struct ievent, suppress "-Wstringop-overread".

Show diffs side-by-side

added added

removed removed

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