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

This commit is contained in:
Rémi Denis-Courmont 2008-05-04 15:40:27 +03:00
parent 5d6e797a6b
commit ab6a68b202
1 changed files with 15 additions and 3 deletions

View File

@ -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 \