mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d80375c632
Original commit message from CVS: Added --enable-plugin-docs configure option, to enable build of the plugin documentation (currently broken). This defaults to off. Changed --enable-docs-build to default to on, since all other documentation should build correctly. Also, correct typo in manual, and fix up a couple of things in example.c
18 lines
377 B
Makefile
18 lines
377 B
Makefile
|
|
if BUILD_PLUGIN_DOCS
|
|
SUBDIRS_PLUGINS = plugins
|
|
else
|
|
SUBDIRS_PLUGINS =
|
|
endif
|
|
|
|
SUBDIRS = manual fwg gst libs $(SUBDIRS_PLUGINS)
|
|
|
|
EXTRA_DIST = random slides manuals.mak
|
|
|
|
dist-hook:
|
|
$(RM) -rf $(distdir)/random/CVS
|
|
$(RM) -rf $(distdir)/random/*~
|
|
$(RM) -rf $(distdir)/random/.\#*
|
|
$(RM) -rf $(distdir)/slides/CVS
|
|
$(RM) -rf $(distdir)/slides/*~
|
|
$(RM) -rf $(distdir)/slides/.\#*
|