m4/: properly give a no result manually when providing a not-found action to fix...
[platform/upstream/gst-common.git] / gtk-doc-plugins.mak
1 # This is an include file specifically tuned for building documentation
2 # for GStreamer plug-ins
3
4 help:
5         @echo "If you are a doc maintainer, run 'make update' to update"
6         @echo "the documentation files maintained in CVS"
7
8 # update the stuff maintained by doc maintainers
9 update:
10         make inspect-update
11         make scanobj-update
12
13 # We set GPATH here; this gives us semantics for GNU make
14 # which are more like other make's VPATH, when it comes to
15 # whether a source that is a target of one rule is then
16 # searched for in VPATH/GPATH.
17 #
18 GPATH = $(srcdir)
19
20 # thomas: make docs parallel installable
21 TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@
22
23 EXTRA_DIST =                            \
24         scanobj-build.stamp             \
25         $(srcdir)/inspect/*.xml         \
26         inspect.stamp                   \
27         inspect-build.stamp             \
28         $(SCANOBJ_FILES)                \
29         $(content_files)                \
30         $(extra_files)                  \
31         $(HTML_IMAGES)                  \
32         $(DOC_MAIN_SGML_FILE)           \
33         $(DOC_MODULE).types             \
34         $(DOC_OVERRIDES)                \
35         $(DOC_MODULE)-sections.txt
36
37 MAINTAINER_DOC_STAMPS =                 \
38         scanobj-build.stamp             \
39         inspect-build.stamp             \
40         inspect.stamp
41
42 # we don't add inspect-build.stamp and scanobj-build.stamp here since they are
43 # built manually by docs maintainers and result is commited to CVS
44 DOC_STAMPS =                            \
45         scan-build.stamp                \
46         tmpl-build.stamp                \
47         sgml-build.stamp                \
48         html-build.stamp                \
49         scan.stamp                      \
50         tmpl.stamp                      \
51         sgml.stamp                      \
52         html.stamp
53
54 # files generated/updated by gtkdoc-scangobj
55 SCANOBJ_FILES =                         \
56         $(DOC_MODULE).signals           \
57         $(DOC_MODULE).hierarchy         \
58         $(DOC_MODULE).interfaces        \
59         $(DOC_MODULE).prerequisites     \
60         $(DOC_MODULE).args
61
62 SCANOBJ_FILES_O =                       \
63         .libs/$(DOC_MODULE)-scan.o
64
65 # files generated/updated by gtkdoc-scan
66 SCAN_FILES =                            \
67         $(DOC_MODULE)-sections.txt      \
68         $(DOC_MODULE)-overrides.txt     \
69         $(DOC_MODULE)-undocumented.txt  \
70         $(DOC_MODULE)-decl.txt          \
71         $(DOC_MODULE)-decl-list.txt
72
73 if ENABLE_GTK_DOC
74 all-local: html-build.stamp
75
76 #### scan gobjects; done by documentation maintainer ####
77 scanobj-update:
78         -rm scanobj-build.stamp
79         make scanobj-build.stamp
80
81 # in the case of non-srcdir builds, the built gst directory gets added
82 # to gtk-doc scanning; but only then, to avoid duplicates
83 # FIXME: since we don't have the scan step as part of the build anymore,
84 # we could remove that
85 # TODO: finish elite script that updates the output files of this step
86 # instead of rewriting them, so that multiple maintainers can generate
87 # a collective set of args and signals
88 scanobj-build.stamp: $(SCANOBJ_DEPS) $(basefiles)
89         @echo '*** Scanning GObjects ***'
90         if test x"$(srcdir)" != x. ; then                               \
91             for f in $(SCANOBJ_FILES);                                  \
92             do                                                          \
93                 cp $(srcdir)/$$f . ;                                    \
94             done;                                                       \
95         else                                                            \
96             $(INSPECT_ENVIRONMENT)                                      \
97             CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)"                         \
98             CFLAGS="-g $(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)"               \
99             $(GST_DOC_SCANOBJ) --type-init-func="gst_init(NULL,NULL)"   \
100                 --module=$(DOC_MODULE) --source=$(PACKAGE) &&           \
101                 $(PYTHON)                                               \
102                 $(top_srcdir)/common/scangobj-merge.py $(DOC_MODULE);   \
103         fi
104         touch scanobj-build.stamp
105
106 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(SCANOBJ_FILES_O): scan-build.stamp
107         @true
108
109 ### inspect GStreamer plug-ins; done by documentation maintainer ###
110
111 # only look at the plugins in this module when building inspect .xml stuff
112 INSPECT_REGISTRY=$(top_builddir)/docs/plugins/inspect-registry.xml
113 INSPECT_ENVIRONMENT=\
114         GST_PLUGIN_SYSTEM_PATH= \
115         GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(top_builddir)/plugins \
116         GST_REGISTRY=$(INSPECT_REGISTRY)
117
118 # update the element and plugin XML descriptions; store in inspect/
119 inspect:
120         mkdir inspect
121
122 inspect-update: inspect
123         -rm $(INSPECT_REGISTRY)
124         -rm inspect-build.stamp
125         make inspect-build.stamp
126
127 # FIXME: inspect.stamp should be written to by gst-xmlinspect.py
128 # IFF the output changed; see gtkdoc-mktmpl
129 inspect-build.stamp:
130         @echo '*** Rebuilding plugin inspection files ***'
131         if test x"$(srcdir)" != x. ; then \
132             cp $(srcdir)/inspect.stamp . ; \
133             cp $(srcdir)/inspect-build.stamp . ; \
134         else \
135             $(INSPECT_ENVIRONMENT) $(PYTHON) \
136                 $(top_srcdir)/common/gst-xmlinspect.py $(PACKAGE) inspect && \
137             echo -n "timestamp" > inspect.stamp && \
138             touch inspect-build.stamp; \
139         fi
140
141 ### scan headers; done on every build ###
142 scan-build.stamp: $(HFILE_GLOB) $(EXTRA_HFILES) $(basefiles) scanobj-build.stamp inspect-build.stamp
143             if test "x$(top_srcdir)" != "x$(top_builddir)";             \
144             then                                                        \
145               export BUILT_OPTIONS="--source-dir=$(top_builddir)/gst";  \
146             fi;                                                         \
147             gtkdoc-scan                                                 \
148                 $(SCAN_OPTIONS) $(EXTRA_HFILES)                         \
149                 --module=$(DOC_MODULE)                                  \
150                 $$BUILT_OPTIONS                                         \
151                 --ignore-headers="$(IGNORE_HFILES)";                    \
152             touch scan-build.stamp
153
154 #### update templates; done on every build ####
155
156 ### FIXME: make this error out again when docs are fixed for 0.9
157 # in a non-srcdir build, we need to copy files from the previous step
158 # and the files from previous runs of this step
159 tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES)
160         @echo '*** Rebuilding template files ***'
161         if test x"$(srcdir)" != x. ; then                               \
162             for f in $(SCANOBJ_FILES) $(SCAN_FILES);                    \
163             do                                                          \
164                 if test -e $(srcdir)/$$f; then cp $(srcdir)/$$f . ; fi; \
165             done;                                                       \
166         fi
167         gtkdoc-mktmpl --module=$(DOC_MODULE) | tee tmpl-build.log
168         $(PYTHON) \
169                 $(top_srcdir)/common/mangle-tmpl.py $(srcdir)/inspect tmpl
170         @cat $(DOC_MODULE)-unused.txt
171         rm -f tmpl-build.log
172         touch tmpl-build.stamp
173
174 tmpl.stamp: tmpl-build.stamp
175         @true
176
177 #### build xml; done on every build ####
178
179 ### FIXME: make this error out again when docs are fixed for 0.9
180 sgml-build.stamp: tmpl.stamp inspect.stamp $(CFILE_GLOB) $(top_srcdir)/common/plugins.xsl
181         @echo '*** Building XML ***'
182         @-mkdir -p xml
183         @for a in $(srcdir)/inspect/*.xml; do \
184             xsltproc --stringparam module $(MODULE) \
185                 $(top_srcdir)/common/plugins.xsl $$a > xml/`basename $$a`; done
186         @for f in $(EXAMPLE_CFILES); do \
187                 $(PYTHON) $(top_srcdir)/common/c-to-xml.py $$f > xml/element-`basename $$f .c`.xml; done
188         gtkdoc-mkdb \
189                 --module=$(DOC_MODULE) \
190                 --source-dir=$(DOC_SOURCE_DIR) \
191                 --main-sgml-file=$(srcdir)/$(DOC_MAIN_SGML_FILE) \
192                 --output-format=xml \
193                 --ignore-files="$(IGNORE_HFILES) $(IGNORE_CFILES)" \
194                 $(MKDB_OPTIONS) \
195                 | tee sgml-build.log
196         @if grep "WARNING:" sgml-build.log > /dev/null; then true; fi # exit 1; fi
197         cp ../version.entities xml
198         rm sgml-build.log
199         touch sgml-build.stamp
200
201 sgml.stamp: sgml-build.stamp
202         @true
203
204 #### build html; done on every step ####
205
206 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
207         @echo '*** Building HTML ***'
208         if test -d html; then rm -rf html; fi
209         mkdir html
210         cp $(srcdir)/$(DOC_MAIN_SGML_FILE) html
211         @for f in $(content_files); do cp $(srcdir)/$$f html; done
212         cp -pr xml html
213         cp ../version.entities html
214         cd html && gtkdoc-mkhtml $(DOC_MODULE) $(DOC_MAIN_SGML_FILE)
215         rm -f html/$(DOC_MAIN_SGML_FILE)
216         rm -rf html/xml
217         rm -f html/version.entities
218         test "x$(HTML_IMAGES)" = "x" || for i in "" $(HTML_IMAGES) ; do \
219             if test "$$i" != ""; then cp $(srcdir)/$$i html ; fi; done
220         @echo '-- Fixing Crossreferences' 
221         gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
222         touch html-build.stamp
223 else
224 all-local:
225 endif
226
227 # FC3 seems to need -scan.c to be part of CLEANFILES for distcheck
228 # no idea why FC4 can do without
229 CLEANFILES = \
230         $(SCANOBJ_FILES_O) \
231         $(DOC_MODULE)-scan.c \
232         $(DOC_MODULE)-unused.txt \
233         $(DOC_STAMPS) \
234         inspect-registry.xml
235
236 # FIXME: these rules need a little cleaning up
237 clean-local:
238         rm -f *~ *.bak
239         rm -rf .libs
240 # clean files generated for tmpl build
241         -rm -rf tmpl
242 # clean files copied/generated for nonsrcdir tmpl build
243         if test x"$(srcdir)" != x. ; then \
244             rm -rf $(SCANOBJ_FILES) $(SCAN_FILES);                      \
245         fi
246 # clean files generated for xml build
247         -rm -rf xml
248 # clean files generate for html build
249         -rm -rf html
250
251 distclean-local: clean
252         rm -rf tmpl/*.sgml.bak
253         rm -f *.stamp || true
254         rm -rf *.o
255
256 # thomas: make docs parallel installable; devhelp requires majorminor too
257 install-data-local:
258         $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) 
259         (installfiles=`echo ./html/*.html`; \
260         if test "$$installfiles" = './html/*.html'; \
261         then echo '-- Nothing to install' ; \
262         else \
263           for i in $$installfiles; do \
264             echo '-- Installing '$$i ; \
265             $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
266           done; \
267           pngfiles=`echo ./html/*.png`; \
268           if test "$$pngfiles" != './html/*.png'; then \
269             for i in $$pngfiles; do \
270               echo '-- Installing '$$i ; \
271               $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
272             done; \
273           fi; \
274           echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp' ; \
275           $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp \
276             $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
277           echo '-- Installing $(srcdir)/html/index.sgml' ; \
278           $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
279                 if test -e $(srcdir)/html/style.css; then \
280                         echo '-- Installing $(srcdir)/html/style.css' ; \
281                         $(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
282                 fi; \
283         fi) 
284 uninstall-local:
285         (installfiles=`echo ./html/*.html`; \
286         if test "$$installfiles" = './html/*.html'; \
287         then echo '-- Nothing to uninstall' ; \
288         else \
289           for i in $$installfiles; do \
290             rmfile=`basename $$i` ; \
291             echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/'$$rmfile ; \
292             rm -f $(DESTDIR)$(TARGET_DIR)/$$rmfile; \
293           done; \
294           pngfiles=`echo ./html/*.png`; \
295           if test "$$pngfiles" != './html/*.png'; then \
296             for i in $$pngfiles; do \
297               rmfile=`basename $$i` ; \
298               echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/'$$rmfile ; \
299               rm -f $(DESTDIR)$(TARGET_DIR)/$$rmfile; \
300             done; \
301           fi; \
302           echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp' ; \
303           rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
304           echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
305           rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
306                 if test -e $(DESTDIR)$(TARGET_DIR)/style.css; then \
307                         echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
308                         rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
309                 fi; \
310         fi) 
311         if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi; true
312
313 #
314 # Require gtk-doc when making dist
315 #
316 if ENABLE_GTK_DOC
317 dist-check-gtkdoc:
318 else
319 dist-check-gtkdoc:
320         @echo "*** gtk-doc must be installed and enabled in order to make dist"
321         @false
322 endif
323
324 # FIXME: decide whether we want to dist generated html or not
325 dist-hook: dist-check-gtkdoc dist-hook-local
326         mkdir $(distdir)/tmpl
327         mkdir $(distdir)/xml
328         mkdir $(distdir)/html
329         -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
330         -cp $(srcdir)/sgml/*.xml $(distdir)/xml
331         -cp $(srcdir)/html/index.sgml $(distdir)/html
332         -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
333         -cp $(srcdir)/html/$(DOC_MODULE).devhelp $(distdir)/html
334
335         images=$(HTML_IMAGES) ;               \
336         for i in "" $$images ; do                     \
337           if test "$$i" != ""; then cp $(srcdir)/$$i $(distdir)/html ; fi; \
338         done
339
340 .PHONY : dist-hook-local