Changeset ab6a68b2020d04d13c00a28faf76246b84eaa3a1
- Timestamp:
- 04/05/08 14:40:27
(5 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209904827 +0300
- git-parent:
[5d6e797a6b0d55e9e5451fabc613ef6d9d14180e]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209904827 +0300
- Message:
Don't recurse to python, ax and mozilla directories if not needed
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r01b8538 |
rab6a68b |
|
| 8 | 8 | # - src (libvlc) is nedeed by modules, mozilla and bindings |
|---|
| 9 | 9 | # - libs/* are needed by modules |
|---|
| 10 | | SUBDIRS = po libs/loader libs/srtp src modules \ |
|---|
| 11 | | projects/mozilla bindings projects/activex share doc test |
|---|
| 12 | | DIST_SUBDIRS = $(SUBDIRS) m4 extras/package/ipkg |
|---|
| | 10 | EXTRA_SUBDIRS = m4 extras/package/ipkg \ |
|---|
| | 11 | bindings/python \ |
|---|
| | 12 | projects/mozilla projects/activex |
|---|
| | 13 | SUBDIRS = po libs/loader libs/srtp src modules share doc test |
|---|
| | 14 | DIST_SUBDIRS = $(SUBDIRS) $(EXTRA_SUBDIRS) |
|---|
| | 15 | |
|---|
| | 16 | if BUILD_MOZILLA |
|---|
| | 17 | SUBDIRS += projects/mozilla |
|---|
| | 18 | endif |
|---|
| | 19 | if BUILD_ACTIVEX |
|---|
| | 20 | SUBDIRS += projects/activex |
|---|
| | 21 | endif |
|---|
| | 22 | if BUILD_PYTHON |
|---|
| | 23 | SUBDIRS += bindings/python |
|---|
| | 24 | endif |
|---|
| 13 | 25 | |
|---|
| 14 | 26 | EXTRA_DIST = \ |
|---|