mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
conditionally build docs
Original commit message from CVS: conditionally build docs
This commit is contained in:
parent
82c2f46e0d
commit
2d644219a1
2 changed files with 13 additions and 1 deletions
|
@ -3,6 +3,8 @@
|
||||||
* configure.ac: check for xmlcatalog for docs build (probably not
|
* configure.ac: check for xmlcatalog for docs build (probably not
|
||||||
strictly needed for general use but fixes non-srcdir builds)
|
strictly needed for general use but fixes non-srcdir builds)
|
||||||
|
|
||||||
|
* Makefile.am: conditionally build docs
|
||||||
|
|
||||||
2003-06-26 David I. Lehn <dlehn@users.sourceforge.net>
|
2003-06-26 David I. Lehn <dlehn@users.sourceforge.net>
|
||||||
|
|
||||||
* configure.ac, AUTHORS, NEWS, README, TODO, docs/Makefile.am,
|
* configure.ac, AUTHORS, NEWS, README, TODO, docs/Makefile.am,
|
||||||
|
|
12
Makefile.am
12
Makefile.am
|
@ -1,7 +1,17 @@
|
||||||
SUBDIRS = gstreamer pkgconfig examples docs
|
if BUILD_DOCS
|
||||||
|
SUBDIRS_DOCS = docs
|
||||||
|
else
|
||||||
|
SUBDIRS_DOCS =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = gstreamer pkgconfig examples $(SUBDIRS_DOCS)
|
||||||
|
|
||||||
|
DIST_SUBDIRS = gstreamer pkgconfig examples docs
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
gst-python.spec.in gst-python.spec
|
gst-python.spec.in gst-python.spec
|
||||||
|
|
||||||
|
CLEANFILES = README NEWS TODO AUTHORS
|
||||||
|
|
||||||
snap:
|
snap:
|
||||||
$(MAKE) dist distdir=$(PACKAGE)-`date +"%Y%m%d"`
|
$(MAKE) dist distdir=$(PACKAGE)-`date +"%Y%m%d"`
|
||||||
|
|
Loading…
Reference in a new issue