]> git.sesse.net Git - vlc/blob - modules/access/Modules.am
Remove CDDAX module
[vlc] / modules / access / Modules.am
1 # Automake forgets to add a proper tag to libtool with Objective-C files.
2 # Moreover Libtool should default tag to CC when none is specified but
3 # obviously does not. Here is a fix for that.
4 LIBTOOL=@LIBTOOL@ --tag=CC
5
6 BASE_SUBDIRS = dvb mms rtp rtsp vcd vcdx screen bd zip
7 EXTRA_SUBDIRS = bda dshow
8 SUBDIRS = $(BASE_SUBDIRS)
9 DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
10
11 if HAVE_WIN32
12 SUBDIRS += bda dshow
13 endif
14
15 SOURCES_access_file = file.c
16 SOURCES_access_mmap = mmap.c
17 SOURCES_access_directory = directory.c
18 SOURCES_access_dv = dv.c
19 SOURCES_access_udp = udp.c
20 SOURCES_access_tcp = tcp.c
21 SOURCES_access_http = http.c
22 SOURCES_access_ftp = ftp.c
23 SOURCES_access_smb = smb.c
24 SOURCES_access_gnomevfs = gnomevfs.c
25 SOURCES_access_eyetv = eyetv.m
26 SOURCES_dvdnav = dvdnav.c
27 SOURCES_dvdread = dvdread.c
28 SOURCES_dc1394 = dc1394.c
29 SOURCES_access_fake = fake.c
30 SOURCES_pvr = pvr.c videodev2.h
31 SOURCES_v4l = v4l.c videodev_mjpeg.h
32 SOURCES_v4l2 = v4l2.c
33 SOURCES_qtcapture = qtcapture.m
34 SOURCES_cdda = \
35         cdda.c \
36         vcd/cdrom.c \
37         vcd/cdrom.h \
38         vcd/cdrom_internals.h \
39         $(NULL)
40 SOURCES_access_jack = jack.c
41 SOURCES_access_alsa = alsa.c
42 SOURCES_access_oss = oss.c
43 SOURCES_access_mtp = mtp.c
44 SOURCES_access_sftp = sftp.c
45 SOURCES_access_imem = imem.c
46 SOURCES_access_avio = avio.c avio.h
47
48 libaccess_rtmp_plugin_la_SOURCES = \
49         rtmp/access.c \
50         rtmp/rtmp_amf_flv.c \
51         rtmp/rtmp_amf_flv.h \
52         $(NULL)
53 libaccess_rtmp_plugin_la_CFLAGS = $(AM_CFLAGS) \
54         -fno-strict-aliasing
55 libaccess_rtmp_plugin_la_LIBADD = $(AM_LIBADD)
56 libaccess_rtmp_plugin_la_DEPENDENCIES =
57
58 libvlc_LTLIBRARIES += \
59         libaccess_file_plugin.la \
60         libaccess_directory_plugin.la \
61         libaccess_udp_plugin.la \
62         libaccess_tcp_plugin.la \
63         libaccess_http_plugin.la \
64         libaccess_ftp_plugin.la \
65         libaccess_fake_plugin.la \
66         libaccess_rtmp_plugin.la \
67         libaccess_imem_plugin.la \
68         $(NULL)
69
70 libxcb_screen_plugin_la_SOURCES = screen/xcb.c
71 libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \
72         $(XCB_CFLAGS)
73 libxcb_screen_plugin_la_LIBADD = $(AM_LIBADD) \
74         $(XCB_LIBS)
75 libxcb_screen_plugin_la_DEPENDENCIES =
76 EXTRA_LTLIBRARIES += libxcb_screen_plugin.la
77 libvlc_LTLIBRARIES += $(LTLIBxcb_screen)