mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
c37fca4fd4
Original commit message from CVS: document core plugins in a separate document just like all the others rename these plugins to something starting with core
23 lines
531 B
Makefile
23 lines
531 B
Makefile
if ENABLE_GTK_DOC
|
|
SUBDIRS_GTK_DOC = gst libs plugins
|
|
else
|
|
SUBDIRS_GTK_DOC =
|
|
endif
|
|
|
|
if ENABLE_DOCBOOK
|
|
SUBDIRS_DOCBOOK = faq manual pwg
|
|
else
|
|
SUBDIRS_DOCBOOK =
|
|
endif
|
|
|
|
BUILT_SOURCES = version.entities
|
|
|
|
SUBDIRS = $(SUBDIRS_DOCBOOK) $(SUBDIRS_GTK_DOC)
|
|
DIST_SUBDIRS = gst libs plugins faq manual pwg 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)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|