mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
7b38bc69a3
Original commit message from CVS: Make docs building dependent on BUILD_DOCS, this appears to be what is intended by configure.ac.
25 lines
497 B
Makefile
25 lines
497 B
Makefile
|
|
if BUILD_PLUGIN_DOCS
|
|
SUBDIRS_PLUGINS = plugins
|
|
else
|
|
SUBDIRS_PLUGINS =
|
|
endif
|
|
|
|
if BUILD_DOCS
|
|
SUBDIRS_DOCS = faq manual pwg gst libs
|
|
else
|
|
SUBDIRS_DOCS =
|
|
endif
|
|
|
|
SUBDIRS = $(SUBDIRS_DOCS) $(SUBDIRS_PLUGINS)
|
|
DIST_SUBDIRS = faq manual pwg gst libs plugins xsl
|
|
|
|
EXTRA_DIST = 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/.\#*
|