Mercurial > mplayer.hg
comparison libmpdemux/Makefile @ 18922:d2d9d011203f
Move conditional compilation into the build system.
author | diego |
---|---|
date | Thu, 06 Jul 2006 13:09:45 +0000 |
parents | f40eeaf450dd |
children | 8e16d54a788e |
comparison
equal
deleted
inserted
replaced
18921:f40eeaf450dd | 18922:d2d9d011203f |
---|---|
9 asfheader.c \ | 9 asfheader.c \ |
10 aviheader.c \ | 10 aviheader.c \ |
11 aviprint.c \ | 11 aviprint.c \ |
12 | 12 |
13 # Core | 13 # Core |
14 SRCS += cache2.c \ | 14 SRCS += extension.c \ |
15 extension.c \ | |
16 mf.c \ | 15 mf.c \ |
17 open.c \ | 16 open.c \ |
18 url.c \ | 17 url.c \ |
19 video.c \ | 18 video.c \ |
20 | 19 |
20 ifeq ($(STREAM_CACHE),yes) | |
21 SRCS += cache2.c | |
22 endif | |
23 | |
21 # Miscellaneous | 24 # Miscellaneous |
22 SRCS += cdda.c \ | 25 SRCS += cdinfo.c \ |
23 cddb.c \ | |
24 cdinfo.c \ | |
25 cue_read.c \ | 26 cue_read.c \ |
26 dvdnav_stream.c \ | |
27 parse_es.c \ | 27 parse_es.c \ |
28 parse_mp4.c \ | 28 parse_mp4.c \ |
29 yuv4mpeg.c \ | 29 yuv4mpeg.c \ |
30 yuv4mpeg_ratio.c \ | 30 yuv4mpeg_ratio.c \ |
31 | 31 |
32 ifeq ($(CDDA),yes) | |
33 SRCS += cdda.c | |
34 ifeq ($(MPLAYER_NETWORK),yes) | |
35 SRCS += cddb.c | |
36 endif | |
37 endif | |
38 | |
32 # Stream readers/writers | 39 # Stream readers/writers |
33 SRCS += stream.c \ | 40 SRCS += stream.c \ |
34 stream_file.c \ | 41 stream_file.c \ |
35 stream_ftp.c \ | |
36 stream_livedotcom.c \ | |
37 stream_netstream.c \ | |
38 stream_null.c \ | 42 stream_null.c \ |
39 stream_smb.c \ | |
40 stream_vcd.c \ | |
41 stream_vstream.c \ | |
42 | 43 |
43 ifeq ($(HAVE_DVD),yes) | 44 ifeq ($(HAVE_DVD),yes) |
44 SRCS += stream_dvd.c | 45 SRCS += stream_dvd.c |
45 endif | 46 endif |
47 ifeq ($(DVDNAV),yes) | |
48 SRCS += dvdnav_stream.c | |
49 endif | |
50 ifeq ($(VCD),yes) | |
51 SRCS += stream_vcd.c | |
52 endif | |
53 ifeq ($(FTP),yes) | |
54 SRCS += stream_ftp.c | |
55 endif | |
56 ifeq ($(LIBSMBCLIENT),yes) | |
57 SRCS += stream_smb.c | |
58 endif | |
59 ifeq ($(MPLAYER_NETWORK),yes) | |
60 SRCS += stream_netstream.c | |
61 ifeq ($(STREAMING_LIVE555),yes) | |
62 SRCS += stream_livedotcom.c | |
63 endif | |
64 endif | |
65 ifeq ($(VSTREAM),yes) | |
66 SRCS += stream_vstream.c | |
67 endif | |
46 | 68 |
47 # TV in | 69 # TV in |
48 SRCS += tv.c \ | 70 ifeq ($(TV),yes) |
49 frequencies.c \ | 71 SRCS += tv.c frequencies.c tvi_dummy.c |
50 tvi_bsdbt848.c \ | 72 ifeq ($(TV_BSDBT848),yes) |
51 tvi_dummy.c \ | 73 SRCS += tvi_bsdbt848.c |
52 tvi_v4l2.c \ | 74 endif |
53 tvi_v4l.c \ | 75 ifeq ($(TV_V4L2),yes) |
54 | 76 SRCS += tvi_v4l2.c audio_in.c |
55 # Audio in | 77 endif |
56 SRCS += audio_in.c \ | 78 ifeq ($(TV_V4L),yes) |
57 ai_alsa1x.c \ | 79 SRCS += tvi_v4l.c audio_in.c |
58 ai_alsa.c \ | 80 endif |
59 ai_oss.c \ | 81 ifeq ($(TV_V4L)$(TV_V4L2),yes) |
82 ifeq ($(ALSA1X),yes) | |
83 SRCS += ai_alsa1x.c | |
84 endif | |
85 ifeq ($(ALSA9),yes) | |
86 SRCS += ai_alsa.c | |
87 endif | |
88 ifeq ($(OSS),yes) | |
89 SRCS += ai_oss.c | |
90 endif | |
91 endif | |
92 endif | |
60 | 93 |
61 # Demuxers | 94 # Demuxers |
62 SRCS += demuxer.c \ | 95 SRCS += demuxer.c \ |
63 demux_aac.c \ | 96 demux_aac.c \ |
64 demux_asf.c \ | 97 demux_asf.c \ |
65 demux_audio.c \ | 98 demux_audio.c \ |
66 demux_avi.c \ | 99 demux_avi.c \ |
67 demux_demuxers.c \ | 100 demux_demuxers.c \ |
68 demux_film.c \ | 101 demux_film.c \ |
69 demux_fli.c \ | 102 demux_fli.c \ |
70 demux_gif.c \ | |
71 demux_lmlm4.c \ | 103 demux_lmlm4.c \ |
72 demux_mf.c \ | 104 demux_mf.c \ |
73 demux_mov.c \ | 105 demux_mov.c \ |
74 demux_mpc.c \ | 106 demux_mpc.c \ |
75 demux_mpg.c \ | 107 demux_mpg.c \ |
76 demux_nsv.c \ | 108 demux_nsv.c \ |
77 demux_nuv.c \ | 109 demux_nuv.c \ |
78 demux_ogg.c \ | |
79 demux_pva.c \ | 110 demux_pva.c \ |
80 demux_rawaudio.c \ | 111 demux_rawaudio.c \ |
81 demux_rawdv.c \ | |
82 demux_rawvideo.c \ | 112 demux_rawvideo.c \ |
83 demux_realaud.c \ | 113 demux_realaud.c \ |
84 demux_real.c \ | 114 demux_real.c \ |
85 demux_roq.c \ | 115 demux_roq.c \ |
86 demux_smjpeg.c \ | 116 demux_smjpeg.c \ |
90 demux_viv.c \ | 120 demux_viv.c \ |
91 demux_vqf.c \ | 121 demux_vqf.c \ |
92 demux_y4m.c \ | 122 demux_y4m.c \ |
93 demux_mkv.c ebml.c \ | 123 demux_mkv.c ebml.c \ |
94 | 124 |
125 ifeq ($(LIBVORBIS),yes) | |
126 SRCS += demux_ogg.c | |
127 endif | |
128 ifeq ($(LIBDV),yes) | |
129 SRCS += demux_rawdv.c | |
130 endif | |
131 ifeq ($(GIF),yes) | |
132 SRCS += demux_gif.c | |
133 endif | |
95 ifeq ($(XMMS_PLUGINS),yes) | 134 ifeq ($(XMMS_PLUGINS),yes) |
96 SRCS += demux_xmms.c | 135 SRCS += demux_xmms.c |
97 endif | 136 endif |
98 ifneq ($(W32_LIB),) | 137 ifneq ($(W32_LIB),) |
99 SRCS += demux_avs.c | 138 SRCS += demux_avs.c |