Skip to content

Commit

Permalink
make: add option to disable building/installing the docs
Browse files Browse the repository at this point in the history
ENABLE_DOCS=0 make will remove the man page files from the list of
targets to build and install. This is useful if the target OS does not
ship manpages and so the builder doesn't have mandoc.

Signed-off-by: Nicholas Bishop <[email protected]>
  • Loading branch information
nicholasbishop authored and vathpela committed Nov 14, 2023
1 parent 23fd0ce commit 1fb3c85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Make.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ ifeq ($(ARCH), x86_64)
ARCH3264 := -m64
endif
endif

# Docs are enabled by default. Set ENABLE_DOCS=0 to disable
# building/installing docs.
ENABLE_DOCS ?= 1
7 changes: 6 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ CFGTARGETS=tmpfiles.conf
SVCTARGETS=pesign.sysvinit pesign.service
MAN1TARGETS=authvar.1 efikeygen.1 pesigcheck.1 pesign-client.1 pesign.1

TARGETS=$(BINTARGETS) $(SVCTARGETS) $(MAN1TARGETS) $(CFGTARGETS)
TARGETS=$(BINTARGETS) $(SVCTARGETS) $(CFGTARGETS)
ifeq ($(ENABLE_DOCS), 1)
TARGETS += $(MAN1TARGETS)
endif

all : deps $(TARGETS)

Expand Down Expand Up @@ -94,8 +97,10 @@ install :
$(INSTALL) -m 755 pesigcheck $(INSTALLROOT)$(bindir)
$(INSTALL) -d -m 755 $(INSTALLROOT)/etc/popt.d/
$(INSTALL) -m 644 pesign.popt $(INSTALLROOT)/etc/popt.d/
ifeq ($(ENABLE_DOCS), 1)
$(INSTALL) -d -m 755 $(INSTALLROOT)$(mandir)man1/
$(INSTALL) -m 644 $(MAN1TARGETS) $(INSTALLROOT)$(mandir)man1/
endif
$(INSTALL) -d -m 755 $(INSTALLROOT)/etc/rpm/
$(INSTALL) -m 644 macros.pesign $(INSTALLROOT)/etc/rpm/
$(INSTALL) -d -m 755 $(INSTALLROOT)$(libexecdir)/pesign/
Expand Down

0 comments on commit 1fb3c85

Please sign in to comment.