In doc/Makefile.am:
> > -all-local: Doxyfile.stamp > +Doxyfile.stamp: Doxyfile Doxyfile-gi $(doxygen_sources) > + $(AM_V_GEN)$(DOXYGEN) Doxyfile-gi && $(DOXYGEN) Doxyfile && echo "" > $@ > + > +ALL_TARGETS = Doxyfile.stamp
I prefer this style generally because it's too easy to accidentally add a recipe to one of the targets and get unwanted results. I also always find multiple occurrences of the same targets confusing most of the time.
—
Reply to this email directly or view it on GitHub.