mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
docs: fix dist/distcheck issues with camerabin figures
Move figures into docs/plugins as well, to avoid issues with make dist and make distcheck (make distdir will not first descend into child directories). Out-of-source build seems to still work as well.
This commit is contained in:
parent
d1b800a4ce
commit
0f70a6b885
5 changed files with 12 additions and 15 deletions
|
@ -1775,7 +1775,6 @@ ext/zbar/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
docs/plugins/Makefile
|
docs/plugins/Makefile
|
||||||
docs/plugins/figures/Makefile
|
|
||||||
docs/version.entities
|
docs/version.entities
|
||||||
pkgconfig/Makefile
|
pkgconfig/Makefile
|
||||||
pkgconfig/gstreamer-plugins-bad.pc
|
pkgconfig/gstreamer-plugins-bad.pc
|
||||||
|
|
|
@ -169,7 +169,7 @@ EXTRA_HFILES = \
|
||||||
$(top_srcdir)/gst-libs/gst/interfaces/photography.h
|
$(top_srcdir)/gst-libs/gst/interfaces/photography.h
|
||||||
|
|
||||||
# Images to copy into HTML directory.
|
# Images to copy into HTML directory.
|
||||||
HTML_IMAGES = figures/*.png
|
HTML_IMAGES = camerabin.png
|
||||||
|
|
||||||
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
||||||
content_files =
|
content_files =
|
||||||
|
@ -192,4 +192,14 @@ DOC_OVERRIDES =
|
||||||
|
|
||||||
include $(top_srcdir)/common/gtk-doc-plugins.mak
|
include $(top_srcdir)/common/gtk-doc-plugins.mak
|
||||||
|
|
||||||
SUBDIRS = figures
|
SUBDIRS =
|
||||||
|
|
||||||
|
FIGURES_SOURCEFILES = camerabin.dot
|
||||||
|
FIGURES_IMAGES = camerabin.png
|
||||||
|
|
||||||
|
EXTRA_DIST += $(FIGURES_SOURCEFILES)
|
||||||
|
|
||||||
|
.dot.png:
|
||||||
|
dot -Tpng $< -o$@
|
||||||
|
|
||||||
|
update-figures: $(FIGURES_IMAGES)
|
||||||
|
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
|
@ -1,12 +0,0 @@
|
||||||
SOURCES=camerabin.dot
|
|
||||||
IMAGES =camerabin.png
|
|
||||||
|
|
||||||
EXTRA_DIST=$(SOURCES)
|
|
||||||
|
|
||||||
.PHONY: update
|
|
||||||
|
|
||||||
.dot.png:
|
|
||||||
dot -Tpng $< -o$@
|
|
||||||
|
|
||||||
update: $(IMAGES)
|
|
||||||
|
|
Loading…
Reference in a new issue