mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
50a2f3fb6f
Original commit message from CVS: clean up docs build a little; have docdir be an overridable install location; separate gtk-doc and docbook bits
21 lines
481 B
Makefile
21 lines
481 B
Makefile
if ENABLE_GTK_DOC
|
|
SUBDIRS_GTK_DOC = gst libs
|
|
else
|
|
SUBDIRS_GTK_DOC =
|
|
endif
|
|
|
|
if ENABLE_DOCBOOK
|
|
SUBDIRS_DOCBOOK = faq manual pwg
|
|
else
|
|
SUBDIRS_DOCBOOK =
|
|
endif
|
|
|
|
SUBDIRS = $(SUBDIRS_DOCBOOK) $(SUBDIRS_GTK_DOC)
|
|
DIST_SUBDIRS = gst faq manual pwg libs 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
|