Commit ab6a68b2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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

parent 5d6e797a
...@@ -7,9 +7,21 @@ ...@@ -7,9 +7,21 @@
# which have makefiles with distribution information. # which have makefiles with distribution information.
# - src (libvlc) is nedeed by modules, mozilla and bindings # - src (libvlc) is nedeed by modules, mozilla and bindings
# - libs/* are needed by modules # - libs/* are needed by modules
SUBDIRS = po libs/loader libs/srtp src modules \ EXTRA_SUBDIRS = m4 extras/package/ipkg \
projects/mozilla bindings projects/activex share doc test bindings/python \
DIST_SUBDIRS = $(SUBDIRS) m4 extras/package/ipkg 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 = \ EXTRA_DIST = \
HACKING \ HACKING \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment