chiark / gitweb /
Makefile: build and clean prospective *.7.pod
[dgit.git] / Makefile
index 6fcc9bd27b93f585ae250423d671e22fdd610959..27347d9124b78b2a1f9e025f81fe6a00266bc370 100644 (file)
--- 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,,$@) \
+               $^ $@