diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-06-14 16:44:33 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-06-14 16:44:33 +0000 |
commit | 856b03faf1196ee01494423a7cffdd49cea1a35c (patch) | |
tree | a2dcc9cc574aacca4b3c3bdd0157e59953be0f2b /Makefile.am | |
parent | 112b2468fa43ee4c1c7f382ee7b13c99120255d0 (diff) | |
download | gst-plugins-bad-856b03faf1196ee01494423a7cffdd49cea1a35c.tar.gz gst-plugins-bad-856b03faf1196ee01494423a7cffdd49cea1a35c.tar.bz2 gst-plugins-bad-856b03faf1196ee01494423a7cffdd49cea1a35c.zip |
added (en/dis)able-external option did harmless search and replace, move along
Original commit message from CVS:
added (en/dis)able-external option
did harmless search and replace, move along
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 21085dde..6f750f68 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,8 +4,14 @@ else GCONF_DIR= endif -SUBDIRS=gst-libs gst sys ext examples tools $(GCONF_DIR) ## testsuite +if BUILD_EXTERNAL +EXT_DIR=ext +else +EXT_DIR= +endif + +SUBDIRS=gst-libs gst sys $(EXT_DIR) examples tools $(GCONF_DIR) ## testsuite -DIST_SUBDIRS=gst-libs gst sys ext examples tools gconf ## testsuite +DIST_SUBDIRS=gst-libs gst sys $(EXT_DIR) examples tools gconf ## testsuite EXTRA_DIST=gst-plugins.spec depcomp AUTHORS COPYING README RELEASE ChangeLog autogen.sh |