From: David I. Lehn Date: Thu, 5 Dec 2002 00:25:13 +0000 (+0000) Subject: examples should build conditionally X-Git-Tag: 1.19.3~507^2~24573 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b7486c82001fb4509e00d188063d64c2e42b210;p=platform%2Fupstream%2Fgstreamer.git examples should build conditionally Original commit message from CVS: examples should build conditionally --- diff --git a/Makefile.am b/Makefile.am index 5450085..696b60d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,13 +10,19 @@ else EXT_DIR= endif +if BUILD_EXAMPLES +EXAMPLES_DIR=examples +else +EXAMPLES_DIR= +endif + pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gstreamer-libs.pc gstreamer-play.pc aclocaldir = $(datadir)/aclocal aclocal_DATA = gst-element-check.m4 -SUBDIRS=gst-libs gst sys $(EXT_DIR) examples tools $(GCONF_DIR) testsuite +SUBDIRS=gst-libs gst sys $(EXT_DIR) $(EXAMPLES_DIR) tools $(GCONF_DIR) testsuite DIST_SUBDIRS=gst-libs gst sys ext examples tools gconf testsuite