mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
6305357090
Original commit message from CVS: * configure.ac: * docs/Makefile.am: * docs/design/Makefile.am Dist design docs.
23 lines
545 B
Makefile
23 lines
545 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 = design $(SUBDIRS_DOCBOOK) $(SUBDIRS_GTK_DOC)
|
|
DIST_SUBDIRS = design 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
|