1 # This is an include file specifically tuned for building documentation
2 # for GStreamer plug-ins
6 @echo "If you are a doc maintainer, run 'make update' to update"
7 @echo "the documentation files maintained in git"
9 @echo Other useful make targets:
11 @echo check-inspected-versions: make sure the inspected plugin info
12 @echo is up to date before a release
15 # update the stuff maintained by doc maintainers
17 $(MAKE) scanobj-update
19 # We set GPATH here; this gives us semantics for GNU make
20 # which are more like other make's VPATH, when it comes to
21 # whether a source that is a target of one rule is then
22 # searched for in VPATH/GPATH.
26 # thomas: make docs parallel installable
27 TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@
29 MAINTAINER_DOC_STAMPS = \
33 $(MAINTAINER_DOC_STAMPS) \
34 $(srcdir)/inspect/*.xml \
39 $(DOC_MAIN_SGML_FILE) \
41 $(DOC_MODULE)-sections.txt
43 # we don't add scanobj-build.stamp here since they are built manually by docs
44 # maintainers and result is commited to git
55 # files generated/updated by gtkdoc-scangobj
57 $(DOC_MODULE).signals \
58 $(DOC_MODULE).hierarchy \
59 $(DOC_MODULE).interfaces \
60 $(DOC_MODULE).prerequisites \
65 .libs/$(DOC_MODULE)-scan.o
67 # files generated/updated by gtkdoc-scan
69 $(DOC_MODULE)-sections.txt \
70 $(DOC_MODULE)-overrides.txt \
71 $(DOC_MODULE)-undocumented.txt \
72 $(DOC_MODULE)-decl.txt \
73 $(DOC_MODULE)-decl-list.txt
77 $(DOC_MODULE)-undocumented.txt \
78 $(DOC_MODULE)-undeclared.txt \
79 $(DOC_MODULE)-unused.txt
81 # FC3 seems to need -scan.c to be part of CLEANFILES for distcheck
82 # no idea why FC4 can do without
85 $(DOC_MODULE)-scan.c \
92 all-local: html-build.stamp
94 ### inspect GStreamer plug-ins; done by documentation maintainer ###
96 # only look at the plugins in this module when building inspect .xml stuff
97 INSPECT_REGISTRY=$(top_builddir)/docs/plugins/inspect-registry.xml
99 GST_PLUGIN_SYSTEM_PATH= \
100 GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(top_builddir)/plugins:$(top_builddir)/src:$(top_builddir)/gnl \
101 GST_REGISTRY=$(INSPECT_REGISTRY) \
102 $(INSPECT_EXTRA_ENVIRONMENT)
104 # update the element and plugin XML descriptions; store in inspect/
108 #### scan gobjects; done by documentation maintainer ####
110 -rm scanobj-build.stamp
111 $(MAKE) scanobj-build.stamp
113 # in the case of non-srcdir builds, the built gst directory gets added
114 # to gtk-doc scanning; but only then, to avoid duplicates
115 # FIXME: since we don't have the scan step as part of the build anymore,
116 # we could remove that
117 # TODO: finish elite script that updates the output files of this step
118 # instead of rewriting them, so that multiple maintainers can generate
119 # a collective set of args and signals
120 scanobj-build.stamp: $(SCANOBJ_DEPS) $(basefiles) inspect
121 @echo '*** Scanning GObjects ***'
122 if test x"$(srcdir)" != x. ; then \
123 for f in $(SCANOBJ_FILES); \
125 cp $(srcdir)/$$f . ; \
128 $(INSPECT_ENVIRONMENT) \
129 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" \
130 CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS) $(WARNING_CFLAGS)" \
131 LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
132 $(GST_DOC_SCANOBJ) --type-init-func="gst_init(NULL,NULL)" \
133 --module=$(DOC_MODULE) --source=$(PACKAGE) --inspect-dir="inspect" && \
135 $(top_srcdir)/common/scangobj-merge.py $(DOC_MODULE); \
137 touch scanobj-build.stamp
139 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(SCANOBJ_FILES_O): scan-build.stamp
142 ### scan headers; done on every build ###
143 scan-build.stamp: $(HFILE_GLOB) $(EXTRA_HFILES) $(basefiles) scanobj-build.stamp
144 if test "x$(top_srcdir)" != "x$(top_builddir)" && \
145 test -d "$(top_builddir)/gst"; \
147 export BUILT_OPTIONS="--source-dir=$(top_builddir)/gst"; \
150 $(SCAN_OPTIONS) $(EXTRA_HFILES) \
151 --module=$(DOC_MODULE) \
153 --ignore-headers="$(IGNORE_HFILES)"; \
154 touch scan-build.stamp
156 #### update templates; done on every build ####
158 ### FIXME: make this error out again when docs are fixed for 0.9
159 # in a non-srcdir build, we need to copy files from the previous step
160 # and the files from previous runs of this step
161 tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES)
162 @echo '*** Rebuilding template files ***'
163 if test x"$(srcdir)" != x. ; then \
164 for f in $(SCANOBJ_FILES) $(SCAN_FILES); \
166 if test -e $(srcdir)/$$f; then cp $(srcdir)/$$f . ; fi; \
169 gtkdoc-mktmpl --module=$(DOC_MODULE) | tee tmpl-build.log
171 $(top_srcdir)/common/mangle-tmpl.py $(srcdir)/inspect tmpl
172 @cat $(DOC_MODULE)-unused.txt
174 touch tmpl-build.stamp
176 tmpl.stamp: tmpl-build.stamp
179 #### build xml; done on every build ####
181 ### FIXME: make this error out again when docs are fixed for 0.9
182 sgml-build.stamp: tmpl.stamp scan-build.stamp $(CFILE_GLOB) $(top_srcdir)/common/plugins.xsl $(expand_content_files)
183 @echo '*** Building XML ***'
185 @for a in $(srcdir)/inspect/*.xml; do \
186 xsltproc --stringparam module $(MODULE) \
187 $(top_srcdir)/common/plugins.xsl $$a > xml/`basename $$a`; done
188 @for f in $(EXAMPLE_CFILES); do \
189 $(PYTHON) $(top_srcdir)/common/c-to-xml.py $$f > xml/element-`basename $$f .c`.xml; done
191 --module=$(DOC_MODULE) \
192 --source-dir=$(DOC_SOURCE_DIR) \
193 --expand-content-files="$(expand_content_files)" \
194 --main-sgml-file=$(srcdir)/$(DOC_MAIN_SGML_FILE) \
195 --output-format=xml \
196 --ignore-files="$(IGNORE_HFILES) $(IGNORE_CFILES)" \
199 @if grep "WARNING:" sgml-build.log > /dev/null; then true; fi # exit 1; fi
200 cp ../version.entities xml
202 touch sgml-build.stamp
204 sgml.stamp: sgml-build.stamp
207 #### build html; done on every step ####
209 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
210 @echo '*** Building HTML ***'
211 if test -d html; then rm -rf html; fi
213 cp $(srcdir)/$(DOC_MAIN_SGML_FILE) html
214 @for f in $(content_files); do cp $(srcdir)/$$f html; done
216 cp ../version.entities html
217 cd html && gtkdoc-mkhtml $(DOC_MODULE) $(DOC_MAIN_SGML_FILE)
218 mv html/index.sgml html/index.sgml.bak
219 $(SED) "s/ href=\"$(DOC_MODULE)\// href=\"$(DOC_MODULE)-@GST_MAJORMINOR@\//g" html/index.sgml.bak >html/index.sgml
220 rm -f html/index.sgml.bak
221 rm -f html/$(DOC_MAIN_SGML_FILE)
223 rm -f html/version.entities
224 test "x$(HTML_IMAGES)" = "x" || for i in "" $(HTML_IMAGES) ; do \
225 if test "$$i" != ""; then cp $(srcdir)/$$i html ; fi; done
226 @echo '-- Fixing Crossreferences'
227 gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
228 touch html-build.stamp
232 # clean files copied for nonsrcdir templates build
233 if test x"$(srcdir)" != x. ; then \
234 rm -rf $(SCANOBJ_FILES) $(SCAN_FILES) $(MAINTAINER_DOC_STAMPS); \
241 clean-local: clean-local-gtkdoc
246 rm -rf tmpl/*.sgml.bak
249 MAINTAINERCLEANFILES = $(MAINTAINER_DOC_STAMPS)
251 # thomas: make docs parallel installable; devhelp requires majorminor too
253 (installfiles=`echo $(srcdir)/html/*.sgml $(srcdir)/html/*.html $(srcdir)/html/*.png $(srcdir)/html/*.css`; \
254 if test "$$installfiles" = '$(srcdir)/html/*.sgml $(srcdir)/html/*.html $(srcdir)/html/*.png $(srcdir)/html/*.css'; \
255 then echo '-- Nothing to install' ; \
257 $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \
258 for i in $$installfiles; do \
259 echo '-- Installing '$$i ; \
260 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
262 pngfiles=`echo ./html/*.png`; \
263 if test "$$pngfiles" != './html/*.png'; then \
264 for i in $$pngfiles; do \
265 echo '-- Installing '$$i ; \
266 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
269 echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp' ; \
270 $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp \
271 $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
272 if test -e $(srcdir)/html/$(DOC_MODULE).devhelp2; then \
273 $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp2 \
274 $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp2; \
276 (which gtkdoc-rebase >/dev/null && \
277 gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR)) || true ; \
280 if test -d $(DESTDIR)$(TARGET_DIR); then \
281 rm -rf $(DESTDIR)$(TARGET_DIR)/*; \
282 rmdir -p $(DESTDIR)$(TARGET_DIR) 2>/dev/null || true; \
284 echo '-- Nothing to uninstall' ; \
290 check-hierarchy: $(DOC_MODULE).hierarchy
291 @if grep ' ' $(DOC_MODULE).hierarchy; then \
292 echo "$(DOC_MODULE).hierarchy contains tabs, please fix"; \
296 check: check-hierarchy
298 # wildcard is apparently not portable to other makes, hence the use of find
299 inspect_files = $(shell find $(srcdir)/inspect -name '*.xml')
301 check-inspected-versions:
302 @echo Checking plugin versions of inspected plugin data ...; \
304 for each in $(inspect_files) ; do \
305 if (grep -H '<version>' $$each | grep -v '<version>$(VERSION)'); then \
306 echo $$each should be fixed to say version $(VERSION) or be removed ; \
307 echo "sed -i -e 's/<version.*version>/<version>$(VERSION)<\/version>/'" $$each; \
315 # Require gtk-doc when making dist
321 @echo "*** gtk-doc must be installed and enabled in order to make dist"
325 # FIXME: decide whether we want to dist generated html or not
326 # also this only works, if the project has been build before
327 # we could dist html only if its there, but that might lead to missing html in
329 dist-hook: dist-check-gtkdoc dist-hook-local
330 mkdir $(distdir)/html
331 cp html/* $(distdir)/html
332 -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/
333 -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/
334 cd $(distdir) && rm -f $(DISTCLEANFILES)
335 -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
337 .PHONY : dist-hook-local docs