~ubuntu-branches/ubuntu/trusty/mm-common/trusty

« back to all changes in this revision

Viewing changes to build/doc-reference.am

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-11-12 17:07:27 UTC
  • Revision ID: package-import@ubuntu.com-20121112170727-pzd1lizzqnxp6u3f
Tags: 0.9.6-0ubuntu1
* New upstream release
* debian/watch:
  - Watch for .xz releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
# A list of wildcard patterns matching the files from the HTML directory
44
44
# generated by Doxygen which should be distributed and installed.
45
 
htmlref_patterns ?= $(addprefix $(doc_outdir)/html/*.,css gif html png)
 
45
htmlref_patterns ?= $(addprefix $(doc_outdir)/html/*.,css gif html png js)
46
46
 
47
47
# Locations of utilities shipped with glibmm.  Made overridable
48
48
# in case the installed utilities cannot be used for some reason.
187
187
 
188
188
# Run Doxygen to build the reference documentation. The generated tag file
189
189
# also functions as time stamp target for the documentation as a whole.
 
190
# Quote $(DOXYGEN) so that this still works if this is a path containing
 
191
# spaces such as "/c/Program Files (x86)/Doxygen/bin/doxygen"
 
192
# The doc_config file may contain "$(MMDOCTOOLDIR)". Export MMDOCTOOLDIR to Doxygen.
190
193
$(doxytagfile): $(doc_dependencies) | $(doc_config)
191
194
        -$(AM_V_at)rm -f $@
192
195
        -$(AM_V_at)rm -fr $(doc_outdir)/html
193
 
        $(AM_V_GEN)(echo '@INCLUDE =' $(doc_config) && echo 'INPUT =' $(doc_input)) | $(DOXYGEN) -
 
196
        $(AM_V_GEN)(echo '@INCLUDE =' $(doc_config) && echo 'INPUT =' $(doc_input)) | MMDOCTOOLDIR="$(MMDOCTOOLDIR)" "$(DOXYGEN)" -
194
197
        $(AM_V_at)$(doc_postprocess) '$(doc_outdir)/html/*.html'
195
198
 
196
199
# Run XSL transformation to generate a Devhelp book from a Doxygen tag file.