Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Wed, 29 Jun 2016 14:56:26 UTC Commit: 0dbe74a02619f87429fb1d67f4c63251b3da6bfa https://github.com/geany/geany/commit/0dbe74a02619f87429fb1d67f4c63251b3da6b...
Log Message: ----------- autotools: Avoid listing the same files twice
Modified Paths: -------------- doc/Makefile.am
Modified: doc/Makefile.am 16 lines changed, 8 insertions(+), 8 deletions(-) =================================================================== @@ -42,11 +42,6 @@ EXTRA_DIST = \ geany.css \ geany.txt \ geany.1 \ - plugins.dox \ - pluginsymbols.c \ - pluginsignals.c \ - stash-example.c \ - stash-gui-example.c \ makefile.win32
# HTML user manual and hacking file @@ -96,13 +91,18 @@ doxygen_sources = \ $(srcdir)/pluginsignals.c \ $(srcdir)/pluginsymbols.c \ $(srcdir)/stash-example.c \ - $(srcdir)/stash-gui-example.c \ + $(srcdir)/stash-gui-example.c + +EXTRA_DIST += $(doxygen_sources) + +doxygen_dependencies = \ + $(doxygen_sources) \ $(top_srcdir)/src/*.[ch] \ $(top_srcdir)/plugins/geanyplugin.h \ $(top_srcdir)/tagmanager/src/tm_source_file.[ch] \ $(top_srcdir)/tagmanager/src/tm_workspace.[ch]
-Doxyfile.stamp: Doxyfile $(doxygen_sources) +Doxyfile.stamp: Doxyfile $(doxygen_dependencies) $(AM_V_GEN)$(DOXYGEN) Doxyfile && echo "" > $@
ALL_LOCAL_TARGETS = Doxyfile.stamp @@ -128,7 +128,7 @@ Doxyfile-gi: Doxyfile
# we depend on Doxyfile.stamp not have this run in parallel with it to avoid # concurrent Doxygen runs, which might overwrite each other's files -Doxyfile-gi.stamp: Doxyfile-gi Doxyfile.stamp $(doxygen_sources) +Doxyfile-gi.stamp: Doxyfile-gi Doxyfile.stamp $(doxygen_dependencies) $(AM_V_GEN)$(DOXYGEN) Doxyfile-gi && echo "" > $@
geany-gtkdoc.h: Doxyfile-gi.stamp $(top_srcdir)/scripts/gen-api-gtkdoc.py
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).