1 # We have to do some funny stuff here with the manpages. In order to ensure
2 # a dist tarball doesn't get put out there without manpages, we keep those
3 # files listed in EXTRA_DIST no matter what. However, we only add them to
4 # man_MANS if --enable-asciidoc and/or --enable-doxygen are used.
15 DOXYGEN_MANS = $(wildcard man3/*.3)
28 submitting-patches.html \
41 PKGBUILD-example.txt \
47 submitting-patches.txt \
48 translation-help.txt \
53 # Files that should be removed, but which Automake does not know.
54 MOSTLYCLEANFILES = *.xml $(ASCIIDOC_MANS) $(HTML_DOCS) repo-remove.8
56 # Ensure manpages are fresh when building a dist tarball
58 $(MAKE) $(AM_MAKEFLAGS) clean
59 $(MAKE) $(AM_MAKEFLAGS) all
62 GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 | sed s/^v//')-dirty
63 REAL_PACKAGE_VERSION = $(GIT_VERSION)
65 REAL_PACKAGE_VERSION = $(PACKAGE_VERSION)
69 dist_man_MANS = $(ASCIIDOC_MANS) repo-remove.8
72 man_MANS += $(DOXYGEN_MANS)
77 $(DOXYGEN) $(srcdir)/Doxyfile
84 -a pacman_version="$(REAL_PACKAGE_VERSION)" \
85 -a pacman_date="`date +%Y-%m-%d`" \
86 -a sysconfdir=$(sysconfdir)
91 --xsltproc-opts='-param man.endnotes.list.enabled 0' \
92 --xsltproc-opts='-param man.endnotes.are.numbered 0'
94 # These rules are due to the includes and files of the asciidoc text
95 $(ASCIIDOC_MANS): asciidoc.conf footer.txt
96 a2x $(A2X_OPTS) --asciidoc-opts="$(ASCIIDOC_OPTS)" $@.txt
99 asciidoc $(ASCIIDOC_OPTS) -a linkcss $*.txt
102 # Customizations for certain HTML docs
103 $(HTML_MANPAGES): asciidoc.conf footer.txt
104 $(HTML_OTHER): asciidoc.conf
105 %.8.html: ASCIIDOC_OPTS += -d manpage
106 %.5.html: ASCIIDOC_OPTS += -d manpage
107 %.3.html: ASCIIDOC_OPTS += -d manpage
110 pacman.8 pacman.8.html: pacman.8.txt
111 makepkg.8 makepkg.8.html: makepkg.8.txt
112 repo-add.8 repo-add.8.html: repo-add.8.txt
113 PKGBUILD.5 PKGBUILD.5.html: PKGBUILD.5.txt PKGBUILD-example.txt
114 makepkg.conf.5 makepkg.conf.5.html: makepkg.conf.5.txt
115 pacman.conf.5 pacman.conf.5.html: pacman.conf.5.txt
116 libalpm.3 libalpm.3.html: libalpm.3.txt
117 # this one is just a symlink
118 repo-remove.8: repo-add.8
120 $(LN_S) repo-add.8 repo-remove.8
122 # vim:set ts=2 sw=2 noet: