[vlc-devel] commit: Don't recurse to python, ax and mozilla directories if not needed ( Rémi Denis-Courmont )

git version control git at videolan.org
Sun May 4 15:02:41 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rem at videolan.org> | Sun May  4 15:40:27 2008 +0300| [ab6a68b2020d04d13c00a28faf76246b84eaa3a1]

Don't recurse to python, ax and mozilla directories if not needed

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ab6a68b2020d04d13c00a28faf76246b84eaa3a1
---

 Makefile.am |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 452a1f6..2f12b66 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,9 +7,21 @@
 # which have makefiles with distribution information.
 #  - src (libvlc) is nedeed by modules, mozilla and bindings
 #  - libs/* are needed by modules
-SUBDIRS = po libs/loader libs/srtp src modules \
-		projects/mozilla bindings projects/activex share doc test
-DIST_SUBDIRS = $(SUBDIRS) m4  extras/package/ipkg
+EXTRA_SUBDIRS = m4 extras/package/ipkg \
+	bindings/python \
+	projects/mozilla projects/activex
+SUBDIRS = po libs/loader libs/srtp src modules share doc test
+DIST_SUBDIRS = $(SUBDIRS) $(EXTRA_SUBDIRS)
+
+if BUILD_MOZILLA
+SUBDIRS += projects/mozilla
+endif
+if BUILD_ACTIVEX
+SUBDIRS += projects/activex
+endif
+if BUILD_PYTHON
+SUBDIRS += bindings/python
+endif
 
 EXTRA_DIST = \
 	HACKING \




More information about the vlc-devel mailing list