From e554077044924a54f12b777de972255a464ea270 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 18 Oct 2016 17:20:27 -0700 Subject: Makefile: build and clean prospective *.7.pod Build the pod section 7 manpages in "make all"; and install them, There aren't any yet, so this does nothing. Signed-off-by: Sean Whitton Signed-off-by: Ian Jackson --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6fcc9bd..27347d9 100644 --- a/Makefile +++ b/Makefile @@ -46,9 +46,9 @@ INFRA_PERLMODULES= \ Debian/Dgit/Infra.pm \ Debian/Dgit/Policy/Debian.pm -all: +all: $(MAN7PAGES) -install: installdirs +install: installdirs $(MAN7PAGES) $(INSTALL_PROGRAM) $(PROGRAMS) $(DESTDIR)$(bindir) $(INSTALL_DATA) $(MAN1PAGES) $(DESTDIR)$(man1dir) $(INSTALL_DATA) $(MAN7PAGES) $(DESTDIR)$(man7dir) @@ -80,3 +80,11 @@ check installcheck: clean distclean mostlyclean maintainer-clean: rm -rf tests/tmp + set -e; for m in $(MAN7PAGES); do \ + test -e $$m.pod && rm -f $$m; \ + done + +%.7: %.7.pod + pod2man --section=7 --date="Debian Project" --center="dgit" \ + --name=$(subst .7,,$@) \ + $^ $@ -- cgit v1.2.3