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 | 25bbab292fa6047b538459d6b7b3fa906f3665ee (patch) | |
tree | 4fb4c30a7f8cf32e40c483358a76791444ec1299 /Makefile.am | |
parent | ce3fd0ba2bbac184e1405d35c0d5120cfb3147b9 (diff) |
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 21085dde8..6f750f68a 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 |