mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
bba6ac4b74
Original commit message from CVS: * docs/Makefile.am: * docs/manual/elements-api.xml: restructure so that common stuff is shown first * docs/manual/init-api.xml: convert to examples * docs/manual/manual.xml: * docs/manuals.mak: * docs/url.entities: link to API on the website, possibly override later in build * examples/manual/.cvsignore: ignore more * examples/manual/Makefile.am: add more examples * examples/manual/extract.pl: error out on failure
32 lines
808 B
Makefile
32 lines
808 B
Makefile
|
|
if BUILD_PLUGIN_DOCS
|
|
SUBDIRS_PLUGINS = plugins
|
|
else
|
|
SUBDIRS_PLUGINS =
|
|
endif
|
|
|
|
# FIXME: separate this out into docbook and gtk-doc so it doesn't descend
|
|
# for docs it can't build
|
|
if BUILD_DOCS
|
|
SUBDIRS_DOCS = faq manual pwg gst libs
|
|
else
|
|
SUBDIRS_DOCS =
|
|
endif
|
|
|
|
SUBDIRS = $(SUBDIRS_DOCS) $(SUBDIRS_PLUGINS)
|
|
DIST_SUBDIRS = gst faq manual pwg libs plugins xsl
|
|
|
|
EXTRA_DIST = \
|
|
slides manuals.mak htmlinstall.mak upload.mak \
|
|
image-png image-pdf image-eps url.entities version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS_DOCS)" != x; then for a in $(SUBDIRS_DOCS); do cd $$a; make upload; cd ..; done; fi
|
|
|
|
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/.\#*
|