diff options
author | Dave Reisner <dreisner@archlinux.org> | 2018-10-22 04:58:23 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2018-10-23 18:13:18 +0200 |
commit | dab45f0808951afc2e3146211a1c6d7ebb8bd06d (patch) | |
tree | 9b2b7a1d34a06cf2639eac956ef3952d5df35174 /doc/Makefile.am | |
parent | b5d62d2c91a2caf5c18945921cdf12af6f36b2d4 (diff) | |
download | pacman-dab45f0808951afc2e3146211a1c6d7ebb8bd06d.tar.gz pacman-dab45f0808951afc2e3146211a1c6d7ebb8bd06d.tar.xz |
Dynamically generate Doxyfile from input
This isn't super interesting for the autotools side, but it's necessary
in order to make things sane for other build systems which we might
introduce in the future.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 2ac38cba..711921fd 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -92,7 +92,10 @@ man_MANS += $(DOXYGEN_MANS) all-local: doxygen.in -doxygen.in: +Doxyfile: Doxyfile.in + sed 's,@OUTPUT_DIRECTORY@,./,' Doxyfile.in >Doxyfile + +doxygen.in: Doxyfile $(DOXYGEN) $(srcdir)/Doxyfile endif |