gstreamer/docs/Makefile.am
Tim-Philipp Müller 56135ebeb0 Use GST_PLUGIN_DOCS macro in configure.ac, add
Original commit message from CVS:
* autogen.sh:
* configure.ac:
* docs/Makefile.am:
Use GST_PLUGIN_DOCS macro in configure.ac, add
--enable-plugin-docs default to autogen.sh and use
ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
2006-06-16 09:56:41 +00:00

21 lines
368 B
Makefile

if ENABLE_GTK_DOC
GTK_DOC_DIRS = libs
else
GTK_DOC_DIRS =
endif
if ENABLE_PLUGIN_DOCS
PLUGIN_DOCS_DIRS = plugins
else
PLUGIN_DOCS_DIRS =
endif
SUBDIRS = $(GTK_DOC_DIRS) $(PLUGIN_DOCS_DIRS)
DIST_SUBDIRS = libs plugins
EXTRA_DIST = \
version.entities.in
upload:
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi