Changeset 7849b2496116224c43b78a09a463c5d57033c535
- Timestamp:
- 05/04/08 14:51:15
(4 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209905475 +0300
- git-parent:
[4ebc6479615be3397bc8d346d75a2e5cbe3098d9]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209905475 +0300
- Message:
More avoidable directories
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rab6a68b |
r7849b24 |
|
| 10 | 10 | EXTRA_SUBDIRS = m4 extras/package/ipkg \ |
|---|
| 11 | 11 | bindings/python \ |
|---|
| | 12 | libs/loader libs/srtp \ |
|---|
| 12 | 13 | projects/mozilla projects/activex |
|---|
| 13 | | SUBDIRS = po libs/loader libs/srtp src modules share doc test |
|---|
| 14 | 14 | DIST_SUBDIRS = $(SUBDIRS) $(EXTRA_SUBDIRS) |
|---|
| 15 | 15 | |
|---|
| | 16 | SUBDIRS = po src |
|---|
| | 17 | if LOADER |
|---|
| | 18 | SUBDIRS += libs/loader |
|---|
| | 19 | endif |
|---|
| | 20 | if HAVE_LIBGCRYPT |
|---|
| | 21 | SUBDIRS += libs/srtp |
|---|
| | 22 | endif |
|---|
| | 23 | SUBDIRS += modules share doc test |
|---|
| 16 | 24 | if BUILD_MOZILLA |
|---|
| 17 | 25 | SUBDIRS += projects/mozilla |
|---|
| r5568a82 |
r7849b24 |
|
| 10 | 10 | # |
|---|
| 11 | 11 | |
|---|
| 12 | | if LOADER |
|---|
| 13 | 12 | noinst_LTLIBRARIES = libloader.la |
|---|
| 14 | | endif |
|---|
| 15 | 13 | |
|---|
| 16 | 14 | # TODO: real check for vsscanf() and <sys/mmap.h> |
|---|
| rdc88457 |
r7849b24 |
|
| 26 | 26 | |
|---|
| 27 | 27 | EXTRA_PROGRAMS = srtp |
|---|
| 28 | | if HAVE_LIBGCRYPT |
|---|
| 29 | 28 | noinst_LTLIBRARIES = libvlc_srtp.la |
|---|
| 30 | 29 | check_PROGRAMS = test-aes test-recv |
|---|
| 31 | 30 | TESTS = $(check_PROGRAMS) |
|---|
| 32 | | endif |
|---|
| 33 | 31 | |
|---|
| 34 | 32 | libvlc_srtp_la_SOURCES = srtp.c |
|---|
| r5d6e797 |
r7849b24 |
|
| 1 | | SUBDIRS = bda dshow dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen |
|---|
| 2 | 1 | # Automake forgets to add a proper tag to libtool with Objective-C files. |
|---|
| 3 | 2 | # Moreover Libtool should default tag to CC when none is specified but |
|---|
| 4 | 3 | # obviously does not. Here is a fix for that. |
|---|
| 5 | 4 | LIBTOOL=@LIBTOOL@ --tag=CC |
|---|
| | 5 | |
|---|
| | 6 | EXTRA_SUBDIRS = bda dshow |
|---|
| | 7 | SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen |
|---|
| | 8 | DIST_SUBDIRS = $(EXTRA_SUBDIRS) $(SUBDIRS) |
|---|
| | 9 | |
|---|
| | 10 | if HAVE_WIN32 |
|---|
| | 11 | SUBDIRS += bda dshow |
|---|
| | 12 | endif |
|---|
| 6 | 13 | |
|---|
| 7 | 14 | SOURCES_access_file = file.c |
|---|