1 ###########################################################################
2 # Everything below here is generic and you shouldn't need to change it.
3 ###########################################################################
4 # thomas: except of course that we did
6 # thomas: copied from glib-2
7 # We set GPATH here; this gives us semantics for GNU make
8 # which are more like other make's VPATH, when it comes to
9 # whether a source that is a target of one rule is then
10 # searched for in VPATH/GPATH.
14 # thomas: make docs parallel installable
15 TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@
21 $(DOC_MAIN_SGML_FILE) \
24 $(DOC_MODULE)-sections.txt
31 $(srcdir)/tmpl.stamp \
32 $(srcdir)/sgml.stamp \
37 $(DOC_MODULE).hierarchy \
38 $(DOC_MODULE).interfaces \
39 $(DOC_MODULE).prerequisites \
40 .libs/$(DOC_MODULE)-scan.o \
43 CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS)
46 all-local: html-build.stamp
50 # in the case of non-srcdir builds, the built gst directory gets added
51 # to gtk-doc scanning; but only then, to avoid duplicates
52 scan-build.stamp: $(HFILE_GLOB) $(SCANOBJ_DEPS) $(basefiles)
53 @echo '*** Scanning header files ***'
54 if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null; \
56 if test x"$(srcdir)" != x. ; then \
57 cp $(srcdir)/$(DOC_MODULE).types . ; \
58 chmod u+w $(DOC_MODULE).types ; \
60 GST_PLUGIN_SYSTEM_PATH=`cd $(top_builddir) && pwd` \
62 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" \
63 CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" \
64 gtkdoc-scangobj --type-init-func="gst_init(NULL,NULL)" \
65 --module=$(DOC_MODULE) ; \
68 for i in $(SCANOBJ_FILES) ; do \
69 test -f $$i || touch $$i ; \
72 if test "x$(top_srcdir)" != "x$(top_builddir)"; \
74 export BUILT_OPTIONS="--source-dir=$(DOC_BUILD_DIR)"; \
77 $(SCAN_OPTIONS) $(EXTRA_HFILES) \
78 --module=$(DOC_MODULE) \
79 --source-dir=$(DOC_SOURCE_DIR) \
81 --ignore-headers="$(IGNORE_HFILES)"
82 touch scan-build.stamp
84 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
89 ### FIXME: make this error out again when docs are fixed for 0.9
90 tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES)
91 @echo '*** Rebuilding template files ***'
92 if test x"$(srcdir)" != x. ; then \
93 cp $(srcdir)/$(DOC_MODULE)-sections.txt . ; \
94 touch $(DOC_MODULE)-decl.txt ; \
96 gtkdoc-mktmpl --module=$(DOC_MODULE) | tee tmpl-build.log
97 @if test -s $(DOC_MODULE)-unused.txt; then \
100 touch tmpl-build.stamp
102 tmpl.stamp: tmpl-build.stamp
107 ### FIXME: make this error out again when docs are fixed for 0.9
108 sgml-build.stamp: tmpl.stamp $(CFILE_GLOB)
109 @echo '*** Building XML ***'
110 gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --main-sgml-file=$(srcdir)/$(DOC_MAIN_SGML_FILE) --output-format=xml $(MKDB_OPTIONS) | tee sgml-build.log
111 @if grep "WARNING:" sgml-build.log > /dev/null; then true; fi # exit 1; fi
113 touch sgml-build.stamp
115 sgml.stamp: sgml-build.stamp
120 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
121 @echo '*** Building HTML ***'
122 if test -d html; then rm -rf html; fi
124 cp $(srcdir)/$(DOC_MAIN_SGML_FILE) html
125 @for f in $(content_files); do cp $(srcdir)/$$f html; done
127 cp ../version.entities html
128 cd html && gtkdoc-mkhtml $(DOC_MODULE) $(DOC_MAIN_SGML_FILE)
129 rm -f html/$(DOC_MAIN_SGML_FILE)
131 rm -f html/version.entities
132 test "x$(HTML_IMAGES)" = "x" || for i in "" $(HTML_IMAGES) ; do \
133 if test "$$i" != ""; then cp $(srcdir)/$$i html ; fi; done
134 @echo '-- Fixing Crossreferences'
135 gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
136 touch html-build.stamp
146 maintainer-clean-local: clean
147 cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
149 # company: don't delete .sgml and -sections.txt as they're in CVS
150 # FIXME : thomas added all sgml files and some other things to make
151 # make distcheck work
152 distclean-local: clean
153 rm -f $(DOC_MODULE)-decl-list.txt
154 rm -f $(DOC_MODULE)-decl.txt
155 rm -f $(DOC_MODULE)-undocumented.txt
156 rm -f $(DOC_MODULE)-unused.txt
157 rm -rf tmpl/*.sgml.bak
158 rm -f $(DOC_MODULE).hierarchy
159 rm -f *.stamp || true
160 if test x"$(srcdir)" != x. ; then \
161 rm -f $(DOC_MODULE)-docs.sgml ; \
162 rm -f $(DOC_MODULE).types ; \
163 rm -f $(DOC_MODULE).interfaces ; \
164 rm -f $(DOC_MODULE)-overrides.txt ; \
165 rm -f $(DOC_MODULE).prerequisites ; \
166 rm -f $(DOC_MODULE)-sections.txt ; \
167 rm -rf tmpl/*.sgml ; \
171 # thomas: make docs parallel installable; devhelp requires majorminor too
173 $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
174 (installfiles=`echo ./html/*.html`; \
175 if test "$$installfiles" = './html/*.html'; \
176 then echo '-- Nothing to install' ; \
178 for i in $$installfiles; do \
179 echo '-- Installing '$$i ; \
180 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
182 pngfiles=`echo ./html/*.png`; \
183 if test "$$pngfiles" != './html/*.png'; then \
184 for i in $$pngfiles; do \
185 echo '-- Installing '$$i ; \
186 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
189 echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp' ; \
190 $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp \
191 $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
192 if test -e $(srcdir)/html/$(DOC_MODULE).devhelp2; then \
193 $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp2 \
194 $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp2; \
196 echo '-- Installing $(srcdir)/html/index.sgml' ; \
197 $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
198 if test -e $(srcdir)/html/style.css; then \
199 echo '-- Installing $(srcdir)/html/style.css' ; \
200 $(INSTALL_DATA) $(srcdir)/html/style.css $(DESTDIR)$(TARGET_DIR); \
204 (installfiles=`echo ./html/*.html`; \
205 if test "$$installfiles" = './html/*.html'; \
206 then echo '-- Nothing to uninstall' ; \
208 for i in $$installfiles; do \
209 rmfile=`basename $$i` ; \
210 echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/'$$rmfile ; \
211 rm -f $(DESTDIR)$(TARGET_DIR)/$$rmfile; \
213 pngfiles=`echo ./html/*.png`; \
214 if test "$$pngfiles" != './html/*.png'; then \
215 for i in $$pngfiles; do \
216 rmfile=`basename $$i` ; \
217 echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/'$$rmfile ; \
218 rm -f $(DESTDIR)$(TARGET_DIR)/$$rmfile; \
221 echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp' ; \
222 rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
223 echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
224 rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
225 if test -e $(DESTDIR)$(TARGET_DIR)/style.css; then \
226 echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/style.css' ; \
227 rm -f $(DESTDIR)$(TARGET_DIR)/style.css; \
230 if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi; true
233 # Require gtk-doc when making dist
239 @echo "*** gtk-doc must be installed and enabled in order to make dist"
243 dist-hook: dist-check-gtkdoc dist-hook-local
244 mkdir $(distdir)/tmpl
246 mkdir $(distdir)/html
247 -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
248 -cp $(srcdir)/sgml/*.xml $(distdir)/xml
249 -cp $(srcdir)/html/index.sgml $(distdir)/html
250 -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
251 -cp $(srcdir)/html/$(DOC_MODULE).devhelp* $(distdir)/html
253 images=$(HTML_IMAGES) ; \
254 for i in "" $$images ; do \
255 if test "$$i" != ""; then cp $(srcdir)/$$i $(distdir)/html ; fi; \
258 .PHONY : dist-hook-local