conditionally build docs

Original commit message from CVS:
conditionally build docs
This commit is contained in:
David I. Lehn 2003-07-09 23:29:30 +00:00
parent 82c2f46e0d
commit 2d644219a1
2 changed files with 13 additions and 1 deletions

View file

@ -3,6 +3,8 @@
* configure.ac: check for xmlcatalog for docs build (probably not
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>
* configure.ac, AUTHORS, NEWS, README, TODO, docs/Makefile.am,

View file

@ -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 = \
gst-python.spec.in gst-python.spec
CLEANFILES = README NEWS TODO AUTHORS
snap:
$(MAKE) dist distdir=$(PACKAGE)-`date +"%Y%m%d"`