Mercurial > mplayer.hg
annotate Makefile @ 29214:a1abd8d51b81
Change VOFW for x86 to 5120, it allows larger images to be scaled and was
not slower. Other archs are not changed as the larger VOFW was slower on PPC.
author | michael |
---|---|
date | Tue, 05 May 2009 01:34:16 +0000 |
parents | 779281d8cd80 |
children | c8dda91cf626 |
rev | line source |
---|---|
27065 | 1 # MPlayer Makefile |
2 # | |
3 # copyright (c) 2008 Diego Biurrun | |
4 # Rewritten entirely from a set of Makefiles written by Arpi and many others. | |
5 # | |
6 # This file is part of MPlayer. | |
7 # | |
8 # MPlayer is free software; you can redistribute it and/or modify | |
9 # it under the terms of the GNU General Public License as published by | |
10 # the Free Software Foundation; either version 2 of the License, or | |
11 # (at your option) any later version. | |
12 # | |
13 # MPlayer is distributed in the hope that it will be useful, | |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 # GNU General Public License for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License along | |
19 # with MPlayer; if not, write to the Free Software Foundation, Inc., | |
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
1 | 21 |
22 include config.mak | |
23 | |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
24 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
25 ###### variable declarations ####### |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
26 |
22541
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
27 COMMON_LDFLAGS += $(EXTRA_LIB)\ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
28 $(EXTRALIBS) \ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
29 |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
30 LDFLAGS_MPLAYER = $(EXTRALIBS_MPLAYER) \ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
31 $(COMMON_LDFLAGS) \ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
32 |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
33 LDFLAGS_MENCODER = $(EXTRALIBS_MENCODER) \ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
34 $(COMMON_LDFLAGS) \ |
a7fc43264e8b
cosmetics: Move some parts around to make more sense overall.
diego
parents:
22539
diff
changeset
|
35 |
29165
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
36 SRCS_AUDIO_INPUT-$(ALSA1X) += stream/ai_alsa1x.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
37 SRCS_AUDIO_INPUT-$(ALSA9) += stream/ai_alsa.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
38 SRCS_AUDIO_INPUT-$(OSS) += stream/ai_oss.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
39 SRCS_COMMON-$(AUDIO_INPUT) += $(SRCS_AUDIO_INPUT-yes) |
26477 | 40 SRCS_COMMON-$(BITMAP_FONT) += libvo/font_load.c |
26483 | 41 SRCS_COMMON-$(CDDA) += stream/stream_cdda.c \ |
42 stream/cdinfo.c | |
43 SRCS_COMMON-$(CDDB) += stream/stream_cddb.c | |
44 SRCS_COMMON-$(DVBIN) += stream/dvb_tune.c \ | |
45 stream/stream_dvb.c | |
46 SRCS_COMMON-$(DVDNAV) += stream/stream_dvdnav.c | |
28256
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
47 SRCS_COMMON-$(DVDNAV_INTERNAL) += libdvdnav/dvdnav.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
48 libdvdnav/highlight.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
49 libdvdnav/navigation.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
50 libdvdnav/read_cache.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
51 libdvdnav/remap.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
52 libdvdnav/searching.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
53 libdvdnav/settings.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
54 libdvdnav/vm/decoder.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
55 libdvdnav/vm/vm.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
56 libdvdnav/vm/vmcmd.c \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
57 |
26483 | 58 SRCS_COMMON-$(DVDREAD) += stream/stream_dvd.c \ |
59 stream/stream_dvd_common.c | |
28245
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
60 SRCS_COMMON-$(DVDREAD_INTERNAL) += libdvdread4/bitreader.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
61 libdvdread4/dvd_input.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
62 libdvdread4/dvd_reader.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
63 libdvdread4/dvd_udf.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
64 libdvdread4/ifo_print.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
65 libdvdread4/ifo_read.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
66 libdvdread4/md5.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
67 libdvdread4/nav_print.c \ |
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
68 libdvdread4/nav_read.c \ |
26496 | 69 |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
70 SRCS_COMMON-$(FAAD) += libmpcodecs/ad_faad.c |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
71 SRCS_COMMON-$(FAAD_INTERNAL) += libfaad2/bits.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
72 libfaad2/cfft.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
73 libfaad2/common.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
74 libfaad2/decoder.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
75 libfaad2/drc.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
76 libfaad2/drm_dec.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
77 libfaad2/error.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
78 libfaad2/filtbank.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
79 libfaad2/hcr.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
80 libfaad2/huffman.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
81 libfaad2/ic_predict.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
82 libfaad2/is.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
83 libfaad2/lt_predict.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
84 libfaad2/mdct.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
85 libfaad2/mp4.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
86 libfaad2/ms.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
87 libfaad2/output.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
88 libfaad2/pns.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
89 libfaad2/ps_dec.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
90 libfaad2/ps_syntax.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
91 libfaad2/pulse.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
92 libfaad2/rvlc.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
93 libfaad2/sbr_dct.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
94 libfaad2/sbr_dec.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
95 libfaad2/sbr_e_nf.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
96 libfaad2/sbr_fbt.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
97 libfaad2/sbr_hfadj.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
98 libfaad2/sbr_hfgen.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
99 libfaad2/sbr_huff.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
100 libfaad2/sbr_qmf.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
101 libfaad2/sbr_syntax.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
102 libfaad2/sbr_tf_grid.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
103 libfaad2/specrec.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
104 libfaad2/ssr.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
105 libfaad2/ssr_fb.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
106 libfaad2/ssr_ipqf.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
107 libfaad2/syntax.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
108 libfaad2/tns.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
109 |
28448
b644796edd94
Conditionally compile aclib.c instead of placing #ifdef around its content.
diego
parents:
28429
diff
changeset
|
110 SRCS_COMMON-$(FASTMEMCPY) += libvo/aclib.c |
26477 | 111 SRCS_COMMON-$(FREETYPE) += libvo/font_load_ft.c |
26483 | 112 SRCS_COMMON-$(FTP) += stream/stream_ftp.c |
26491 | 113 SRCS_COMMON-$(GIF) += libmpdemux/demux_gif.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
114 SRCS_COMMON-$(HAVE_POSIX_SELECT) += libmpcodecs/vf_bmovl.c |
27400 | 115 SRCS_COMMON-$(HAVE_SYS_MMAN_H) += libaf/af_export.c osdep/mmap_anon.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
116 SRCS_COMMON-$(JPEG) += libmpcodecs/vd_ijpg.c |
26344
3278dca99929
Merge libaf/Makefile into Makefile, one less instance of recursive make.
diego
parents:
26331
diff
changeset
|
117 SRCS_COMMON-$(LADSPA) += libaf/af_ladspa.c |
27339
3d8e6afe3f9f
Use conditional compilation instead of an #ifdef around the whole file.
diego
parents:
27327
diff
changeset
|
118 SRCS_COMMON-$(LIBA52) += libmpcodecs/ad_hwac3.c \ |
27588 | 119 libmpcodecs/ad_liba52.c |
120 SRCS_COMMON-$(LIBA52_INTERNAL) += liba52/crc.c \ | |
26522 | 121 liba52/resample.c \ |
122 liba52/bit_allocate.c \ | |
123 liba52/bitstream.c \ | |
124 liba52/downmix.c \ | |
125 liba52/imdct.c \ | |
126 liba52/parse.c \ | |
127 | |
26347 | 128 SRCS_COMMON-$(LIBASS) += libass/ass.c \ |
129 libass/ass_bitmap.c \ | |
130 libass/ass_cache.c \ | |
131 libass/ass_font.c \ | |
132 libass/ass_fontconfig.c \ | |
133 libass/ass_library.c \ | |
134 libass/ass_mp.c \ | |
135 libass/ass_render.c \ | |
136 libass/ass_utils.c \ | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
137 libmpcodecs/vf_ass.c \ |
26347 | 138 |
26691 | 139 SRCS_COMMON-$(LIBAVCODEC) += av_opts.c \ |
140 libaf/af_lavcresample.c \ | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
141 libmpcodecs/ad_ffmpeg.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
142 libmpcodecs/vd_ffmpeg.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
143 libmpcodecs/vf_lavc.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
144 libmpcodecs/vf_lavcdeint.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
145 libmpcodecs/vf_screenshot.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
146 |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
147 # These filters use private headers and do not work with shared libavcodec. |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
148 SRCS_COMMON-$(LIBAVCODEC_A) += libaf/af_lavcac3enc.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
149 libmpcodecs/vf_fspp.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
150 libmpcodecs/vf_geq.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
151 libmpcodecs/vf_mcdeint.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
152 libmpcodecs/vf_qp.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
153 libmpcodecs/vf_spp.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
154 libmpcodecs/vf_uspp.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
155 |
26491 | 156 SRCS_COMMON-$(LIBAVFORMAT) += libmpdemux/demux_lavf.c |
29093 | 157 SRCS_COMMON-$(LIBBS2B) += libaf/af_bs2b.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
158 SRCS_COMMON-$(LIBDCA) += libmpcodecs/ad_libdca.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
159 SRCS_COMMON-$(LIBDV) += libmpcodecs/ad_libdv.c \ |
26491 | 160 libmpcodecs/vd_libdv.c \ |
161 libmpdemux/demux_rawdv.c | |
26493
872363c4aafd
Rename make variable DVDCSS_INTERNAL --> LIBDVDCSS_INTERNAL.
diego
parents:
26492
diff
changeset
|
162 SRCS_COMMON-$(LIBDVDCSS_INTERNAL) += libdvdcss/css.c \ |
26492 | 163 libdvdcss/device.c \ |
164 libdvdcss/error.c \ | |
165 libdvdcss/ioctl.c \ | |
166 libdvdcss/libdvdcss.c \ | |
167 | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
168 SRCS_COMMON-$(LIBMAD) += libmpcodecs/ad_libmad.c |
29165
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
169 |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
170 SRCS_LIBMPEG2-$(ARCH_ALPHA) += libmpeg2/idct_alpha.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
171 libmpeg2/motion_comp_alpha.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
172 SRCS_LIBMPEG2-$(ARCH_ARM) += libmpeg2/motion_comp_arm.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
173 libmpeg2/motion_comp_arm_s.S |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
174 SRCS_LIBMPEG2-$(HAVE_ALTIVEC) += libmpeg2/idct_altivec.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
175 libmpeg2/motion_comp_altivec.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
176 SRCS_LIBMPEG2-$(HAVE_MMX) += libmpeg2/idct_mmx.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
177 libmpeg2/motion_comp_mmx.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
178 SRCS_LIBMPEG2-$(HAVE_VIS) += libmpeg2/motion_comp_vis.c |
26519 | 179 SRCS_COMMON-$(LIBMPEG2) += libmpcodecs/vd_libmpeg2.c \ |
180 libmpeg2/alloc.c \ | |
181 libmpeg2/cpu_accel.c\ | |
182 libmpeg2/cpu_state.c \ | |
183 libmpeg2/decode.c \ | |
184 libmpeg2/header.c \ | |
185 libmpeg2/idct.c \ | |
186 libmpeg2/motion_comp.c \ | |
29165
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
187 libmpeg2/slice.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
188 $(SRCS_LIBMPEG2-yes) |
29166 | 189 |
26491 | 190 SRCS_COMMON-$(LIBNEMESI) += libmpdemux/demux_nemesi.c \ |
191 stream/stream_nemesi.c | |
192 SRCS_COMMON-$(LIBNUT) += libmpdemux/demux_nut.c | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
193 SRCS_COMMON-$(LIBPOSTPROC) += libmpcodecs/vf_pp.c |
26483 | 194 SRCS_COMMON-$(LIBSMBCLIENT) += stream/stream_smb.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
195 SRCS_COMMON-$(LIBTHEORA) += libmpcodecs/vd_theora.c |
26491 | 196 SRCS_COMMON-$(LIBVORBIS) += libmpcodecs/ad_libvorbis.c \ |
197 libmpdemux/demux_ogg.c | |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
198 SRCS_COMMON-$(LIVE555) += libmpdemux/demux_rtp.cpp \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
199 libmpdemux/demux_rtp_codec.cpp \ |
27401 | 200 stream/stream_live555.c |
27394
a0c602e0caf3
Ahem, the MACOSX_FINDER_SUPPORT directive was renamed to MACOSX_FINDER.
diego
parents:
27373
diff
changeset
|
201 SRCS_COMMON-$(MACOSX_FINDER) += osdep/macosx_finder_args.c |
28018
4ac70bd6acac
MNG demuxer by Stefan Schuermans, stefan blinkenarea org
diego
parents:
27906
diff
changeset
|
202 SRCS_COMMON-$(MNG) += libmpdemux/demux_mng.c |
29166 | 203 |
29165
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
204 SRCS_MP3LIB-X86-$(HAVE_AMD3DNOW) += mp3lib/dct36_3dnow.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
205 mp3lib/dct64_3dnow.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
206 SRCS_MP3LIB-X86-$(HAVE_AMD3DNOWEXT) += mp3lib/dct36_k7.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
207 mp3lib/dct64_k7.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
208 SRCS_MP3LIB-X86-$(HAVE_MMX) += mp3lib/dct64_mmx.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
209 SRCS_MP3LIB-$(ARCH_X86_32) += mp3lib/decode_i586.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
210 $(SRCS_MP3LIB-X86-yes) |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
211 SRCS_MP3LIB-$(HAVE_ALTIVEC) += mp3lib/dct64_altivec.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
212 SRCS_MP3LIB-$(HAVE_MMX) += mp3lib/decode_mmx.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
213 SRCS_MP3LIB-$(HAVE_SSE) += mp3lib/dct64_sse.c |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
214 SRCS_COMMON-$(MP3LIB) += libmpcodecs/ad_mp3lib.c mp3lib/sr1.c \ |
55181c28943d
Use temporary variables to add objects that depend on more than one
diego
parents:
29163
diff
changeset
|
215 $(SRCS_MP3LIB-yes) |
29166 | 216 |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
217 SRCS_COMMON-$(MUSEPACK) += libmpcodecs/ad_mpc.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
218 libmpdemux/demux_mpc.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
219 SRCS_COMMON-$(NATIVE_RTSP) += stream/stream_rtsp.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
220 stream/freesdp/common.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
221 stream/freesdp/errorlist.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
222 stream/freesdp/parser.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
223 stream/librtsp/rtsp.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
224 stream/librtsp/rtsp_rtp.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
225 stream/librtsp/rtsp_session.c \ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
226 |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
227 SRCS_COMMON-$(NEED_GETTIMEOFDAY) += osdep/gettimeofday.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
228 SRCS_COMMON-$(NEED_GLOB) += osdep/glob-win.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
229 SRCS_COMMON-$(NEED_MMAP) += osdep/mmap-os2.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
230 SRCS_COMMON-$(NEED_SETENV) += osdep/setenv.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
231 SRCS_COMMON-$(NEED_SHMEM) += osdep/shmem.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
232 SRCS_COMMON-$(NEED_STRSEP) += osdep/strsep.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
233 SRCS_COMMON-$(NEED_SWAB) += osdep/swab.c |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
234 SRCS_COMMON-$(NEED_VSSCANF) += osdep/vsscanf.c |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27394
diff
changeset
|
235 SRCS_COMMON-$(NETWORK) += stream/stream_netstream.c \ |
26483 | 236 stream/asf_mmst_streaming.c \ |
237 stream/asf_streaming.c \ | |
238 stream/cookies.c \ | |
239 stream/http.c \ | |
240 stream/network.c \ | |
241 stream/pnm.c \ | |
242 stream/rtp.c \ | |
243 stream/udp.c \ | |
244 stream/tcp.c \ | |
245 stream/stream_rtp.c \ | |
246 stream/stream_udp.c \ | |
26601 | 247 stream/librtsp/rtsp.c \ |
26483 | 248 stream/realrtsp/asmrp.c \ |
249 stream/realrtsp/real.c \ | |
250 stream/realrtsp/rmff.c \ | |
251 stream/realrtsp/sdpplin.c \ | |
252 stream/realrtsp/xbuffer.c \ | |
253 | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
254 SRCS_COMMON-$(PNG) += libmpcodecs/vd_mpng.c |
28485
3f597aacbb69
Add priority support for OS/2 and factorize the Windows priority support.
diego
parents:
28448
diff
changeset
|
255 SRCS_COMMON-$(PRIORITY) += osdep/priority.c |
26483 | 256 SRCS_COMMON-$(PVR) += stream/stream_pvr.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
257 SRCS_COMMON-$(QTX_CODECS) += libmpcodecs/ad_qtaudio.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
258 libmpcodecs/vd_qtvideo.c |
26541 | 259 SRCS_COMMON-$(QTX_EMULATION) += loader/wrapper.S |
26483 | 260 SRCS_COMMON-$(RADIO) += stream/stream_radio.c |
261 SRCS_COMMON-$(RADIO_CAPTURE) += stream/audio_in.c | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
262 SRCS_COMMON-$(REAL_CODECS) += libmpcodecs/ad_realaud.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
263 libmpcodecs/vd_realvid.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
264 SRCS_COMMON-$(SPEEX) += libmpcodecs/ad_speex.c |
26483 | 265 SRCS_COMMON-$(STREAM_CACHE) += stream/cache2.c |
26491 | 266 |
26471 | 267 SRCS_COMMON-$(TREMOR_INTERNAL) += tremor/bitwise.c \ |
268 tremor/block.c \ | |
269 tremor/codebook.c \ | |
270 tremor/floor0.c \ | |
271 tremor/floor1.c \ | |
272 tremor/framing.c \ | |
273 tremor/info.c \ | |
274 tremor/mapping0.c \ | |
275 tremor/mdct.c \ | |
276 tremor/registry.c \ | |
277 tremor/res012.c \ | |
278 tremor/sharedbook.c \ | |
279 tremor/synthesis.c \ | |
280 tremor/window.c \ | |
281 | |
26483 | 282 SRCS_COMMON-$(TV) += stream/stream_tv.c stream/tv.c \ |
283 stream/frequencies.c stream/tvi_dummy.c | |
284 SRCS_COMMON-$(TV_BSDBT848) += stream/tvi_bsdbt848.c | |
285 SRCS_COMMON-$(TV_DSHOW) += stream/tvi_dshow.c | |
286 SRCS_COMMON-$(TV_TELETEXT) += stream/tvi_vbi.c | |
287 SRCS_COMMON-$(TV_V4L1) += stream/tvi_v4l.c stream/audio_in.c | |
288 SRCS_COMMON-$(TV_V4L2) += stream/tvi_v4l2.c stream/audio_in.c | |
26330 | 289 SRCS_COMMON-$(UNRAR_EXEC) += unrar_exec.c |
26483 | 290 SRCS_COMMON-$(VCD) += stream/stream_vcd.c |
291 SRCS_COMMON-$(VSTREAM) += stream/stream_vstream.c | |
26541 | 292 SRCS_COMMON-$(WIN32_EMULATION) += loader/elfdll.c \ |
293 loader/ext.c \ | |
294 loader/ldt_keeper.c \ | |
295 loader/module.c \ | |
296 loader/pe_image.c \ | |
297 loader/pe_resource.c \ | |
298 loader/registry.c \ | |
299 loader/resource.c \ | |
300 loader/win32.c \ | |
301 | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
302 SRCS_COMMON-$(WIN32DLL) += libmpcodecs/ad_acm.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
303 libmpcodecs/ad_dmo.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
304 libmpcodecs/ad_dshow.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
305 libmpcodecs/ad_twin.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
306 libmpcodecs/vd_dmo.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
307 libmpcodecs/vd_dshow.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
308 libmpcodecs/vd_vfw.c \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
309 libmpcodecs/vd_vfwex.c \ |
26491 | 310 libmpdemux/demux_avs.c \ |
26541 | 311 loader/afl.c \ |
26999
0b21ffa03b9c
Rename loader/driver.[ch] to loader/drv.[ch], otherwise loader/driver.h can
diego
parents:
26998
diff
changeset
|
312 loader/drv.c \ |
26541 | 313 loader/vfl.c \ |
314 loader/dshow/DS_AudioDecoder.c \ | |
315 loader/dshow/DS_Filter.c \ | |
316 loader/dshow/DS_VideoDecoder.c \ | |
317 loader/dshow/allocator.c \ | |
318 loader/dshow/cmediasample.c \ | |
319 loader/dshow/guids.c \ | |
320 loader/dshow/inputpin.c \ | |
321 loader/dshow/mediatype.c \ | |
322 loader/dshow/outputpin.c \ | |
323 loader/dmo/DMO_AudioDecoder.c \ | |
324 loader/dmo/DMO_VideoDecoder.c \ | |
325 loader/dmo/buffer.c \ | |
326 loader/dmo/dmo.c \ | |
327 loader/dmo/dmo_guids.c \ | |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
328 |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
329 SRCS_COMMON-$(XANIM_CODECS) += libmpcodecs/vd_xanim.c |
26491 | 330 SRCS_COMMON-$(XMMS_PLUGINS) += libmpdemux/demux_xmms.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
331 SRCS_COMMON-$(XVID4) += libmpcodecs/vd_xvid4.c |
28043
6b1b0fb8b5c2
cosmetics: Rename ZORAN Makefile variable to ZR for consistency.
diego
parents:
28041
diff
changeset
|
332 SRCS_COMMON-$(ZR) += libmpcodecs/vd_zrmjpeg.c \ |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
333 libmpcodecs/vf_zrmjpeg.c |
29167
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
334 SRCS_COMMON = asxparser.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
335 codec-cfg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
336 cpudetect.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
337 edl.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
338 find_sub.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
339 fmt-conversion.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
340 get_path.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
341 m_config.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
342 m_option.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
343 m_struct.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
344 mpcommon.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
345 parser-cfg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
346 playtree.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
347 playtreeparser.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
348 spudec.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
349 sub_cc.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
350 subopt-helper.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
351 subreader.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
352 vobsub.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
353 libaf/af.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
354 libaf/af_center.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
355 libaf/af_channels.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
356 libaf/af_comp.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
357 libaf/af_delay.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
358 libaf/af_dummy.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
359 libaf/af_equalizer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
360 libaf/af_extrastereo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
361 libaf/af_format.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
362 libaf/af_gate.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
363 libaf/af_hrtf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
364 libaf/af_karaoke.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
365 libaf/af_pan.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
366 libaf/af_resample.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
367 libaf/af_scaletempo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
368 libaf/af_sinesuppress.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
369 libaf/af_stats.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
370 libaf/af_sub.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
371 libaf/af_surround.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
372 libaf/af_sweep.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
373 libaf/af_tools.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
374 libaf/af_volnorm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
375 libaf/af_volume.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
376 libaf/filter.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
377 libaf/format.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
378 libaf/reorder_ch.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
379 libaf/window.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
380 libmpcodecs/ad.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
381 libmpcodecs/ad_alaw.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
382 libmpcodecs/ad_dk3adpcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
383 libmpcodecs/ad_dvdpcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
384 libmpcodecs/ad_hwmpa.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
385 libmpcodecs/ad_imaadpcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
386 libmpcodecs/ad_msadpcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
387 libmpcodecs/ad_msgsm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
388 libmpcodecs/ad_pcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
389 libmpcodecs/dec_audio.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
390 libmpcodecs/dec_video.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
391 libmpcodecs/img_format.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
392 libmpcodecs/mp_image.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
393 libmpcodecs/native/xa_gsm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
394 libmpcodecs/pullup.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
395 libmpcodecs/vd.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
396 libmpcodecs/vd_hmblck.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
397 libmpcodecs/vd_lzo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
398 libmpcodecs/vd_mpegpes.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
399 libmpcodecs/vd_mtga.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
400 libmpcodecs/vd_null.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
401 libmpcodecs/vd_raw.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
402 libmpcodecs/vd_sgi.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
403 libmpcodecs/vf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
404 libmpcodecs/vf_1bpp.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
405 libmpcodecs/vf_2xsai.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
406 libmpcodecs/vf_blackframe.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
407 libmpcodecs/vf_boxblur.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
408 libmpcodecs/vf_crop.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
409 libmpcodecs/vf_cropdetect.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
410 libmpcodecs/vf_decimate.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
411 libmpcodecs/vf_delogo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
412 libmpcodecs/vf_denoise3d.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
413 libmpcodecs/vf_detc.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
414 libmpcodecs/vf_dint.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
415 libmpcodecs/vf_divtc.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
416 libmpcodecs/vf_down3dright.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
417 libmpcodecs/vf_dsize.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
418 libmpcodecs/vf_dvbscale.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
419 libmpcodecs/vf_eq.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
420 libmpcodecs/vf_eq2.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
421 libmpcodecs/vf_expand.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
422 libmpcodecs/vf_field.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
423 libmpcodecs/vf_fil.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
424 libmpcodecs/vf_filmdint.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
425 libmpcodecs/vf_flip.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
426 libmpcodecs/vf_format.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
427 libmpcodecs/vf_framestep.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
428 libmpcodecs/vf_halfpack.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
429 libmpcodecs/vf_harddup.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
430 libmpcodecs/vf_hqdn3d.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
431 libmpcodecs/vf_hue.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
432 libmpcodecs/vf_il.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
433 libmpcodecs/vf_ilpack.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
434 libmpcodecs/vf_ivtc.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
435 libmpcodecs/vf_kerndeint.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
436 libmpcodecs/vf_mirror.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
437 libmpcodecs/vf_noformat.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
438 libmpcodecs/vf_noise.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
439 libmpcodecs/vf_ow.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
440 libmpcodecs/vf_palette.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
441 libmpcodecs/vf_perspective.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
442 libmpcodecs/vf_phase.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
443 libmpcodecs/vf_pp7.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
444 libmpcodecs/vf_pullup.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
445 libmpcodecs/vf_rectangle.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
446 libmpcodecs/vf_remove_logo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
447 libmpcodecs/vf_rgb2bgr.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
448 libmpcodecs/vf_rgbtest.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
449 libmpcodecs/vf_rotate.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
450 libmpcodecs/vf_sab.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
451 libmpcodecs/vf_scale.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
452 libmpcodecs/vf_smartblur.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
453 libmpcodecs/vf_softpulldown.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
454 libmpcodecs/vf_softskip.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
455 libmpcodecs/vf_swapuv.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
456 libmpcodecs/vf_telecine.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
457 libmpcodecs/vf_test.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
458 libmpcodecs/vf_tfields.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
459 libmpcodecs/vf_tile.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
460 libmpcodecs/vf_tinterlace.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
461 libmpcodecs/vf_unsharp.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
462 libmpcodecs/vf_vo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
463 libmpcodecs/vf_yadif.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
464 libmpcodecs/vf_yuvcsp.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
465 libmpcodecs/vf_yuy2.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
466 libmpcodecs/vf_yvu9.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
467 libmpdemux/aac_hdr.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
468 libmpdemux/asfheader.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
469 libmpdemux/aviheader.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
470 libmpdemux/aviprint.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
471 libmpdemux/demuxer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
472 libmpdemux/demux_aac.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
473 libmpdemux/demux_asf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
474 libmpdemux/demux_audio.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
475 libmpdemux/demux_avi.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
476 libmpdemux/demux_demuxers.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
477 libmpdemux/demux_film.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
478 libmpdemux/demux_fli.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
479 libmpdemux/demux_lmlm4.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
480 libmpdemux/demux_mf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
481 libmpdemux/demux_mkv.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
482 libmpdemux/demux_mov.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
483 libmpdemux/demux_mpg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
484 libmpdemux/demux_nsv.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
485 libmpdemux/demux_pva.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
486 libmpdemux/demux_rawaudio.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
487 libmpdemux/demux_rawvideo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
488 libmpdemux/demux_realaud.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
489 libmpdemux/demux_real.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
490 libmpdemux/demux_roq.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
491 libmpdemux/demux_smjpeg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
492 libmpdemux/demux_ts.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
493 libmpdemux/demux_ty.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
494 libmpdemux/demux_ty_osd.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
495 libmpdemux/demux_viv.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
496 libmpdemux/demux_vqf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
497 libmpdemux/demux_y4m.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
498 libmpdemux/ebml.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
499 libmpdemux/extension.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
500 libmpdemux/mf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
501 libmpdemux/mp3_hdr.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
502 libmpdemux/mp_taglists.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
503 libmpdemux/mpeg_hdr.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
504 libmpdemux/mpeg_packetizer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
505 libmpdemux/parse_es.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
506 libmpdemux/parse_mp4.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
507 libmpdemux/video.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
508 libmpdemux/yuv4mpeg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
509 libmpdemux/yuv4mpeg_ratio.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
510 libvo/osd.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
511 libvo/sub.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
512 osdep/$(GETCH) \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
513 osdep/$(TIMER) \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
514 stream/open.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
515 stream/stream.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
516 stream/stream_cue.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
517 stream/stream_file.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
518 stream/stream_mf.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
519 stream/stream_null.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
520 stream/url.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
521 $(SRCS_COMMON-yes) |
26483 | 522 |
26308
51338bf153de
Get rid of recursive make for the input/ subdirectory.
diego
parents:
26305
diff
changeset
|
523 |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
524 SRCS_MPLAYER-$(3DFX) += libvo/vo_3dfx.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
525 SRCS_MPLAYER-$(AA) += libvo/vo_aa.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
526 SRCS_MPLAYER-$(ALSA1X) += libao2/ao_alsa.c |
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
527 SRCS_MPLAYER-$(ALSA5) += libao2/ao_alsa5.c |
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
528 SRCS_MPLAYER-$(ALSA9) += libao2/ao_alsa.c |
26773 | 529 SRCS_MPLAYER-$(APPLE_IR) += input/appleir.c |
26308
51338bf153de
Get rid of recursive make for the input/ subdirectory.
diego
parents:
26305
diff
changeset
|
530 SRCS_MPLAYER-$(APPLE_REMOTE) += input/ar.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
531 SRCS_MPLAYER-$(ARTS) += libao2/ao_arts.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
532 SRCS_MPLAYER-$(BL) += libvo/vo_bl.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
533 SRCS_MPLAYER-$(CACA) += libvo/vo_caca.c |
29209 | 534 SRCS_MPLAYER-$(COREAUDIO) += libao2/ao_coreaudio.c |
29210 | 535 SRCS_MPLAYER-$(COREVIDEO) += libvo/vo_corevideo.m |
28740
1f76d86e49ae
DART audio output driver for OS/2 by KO Myung-Hun, komh chollian net
diego
parents:
28737
diff
changeset
|
536 SRCS_MPLAYER-$(DART) += libao2/ao_dart.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
537 SRCS_MPLAYER-$(DFBMGA) += libvo/vo_dfbmga.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
538 SRCS_MPLAYER-$(DGA) += libvo/vo_dga.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
539 SRCS_MPLAYER-$(DIRECT3D) += libvo/vo_direct3d.c libvo/w32_common.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
540 SRCS_MPLAYER-$(DIRECTFB) += libvo/vo_directfb2.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
541 SRCS_MPLAYER-$(DIRECTX) += libao2/ao_dsound.c libvo/vo_directx.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
542 SRCS_MPLAYER-$(DXR2) += libao2/ao_dxr2.c libvo/vo_dxr2.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
543 SRCS_MPLAYER-$(DXR3) += libvo/vo_dxr3.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
544 SRCS_MPLAYER-$(ESD) += libao2/ao_esd.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
545 SRCS_MPLAYER-$(FBDEV) += libvo/vo_fbdev.c libvo/vo_fbdev2.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
546 SRCS_MPLAYER-$(GGI) += libvo/vo_ggi.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
547 SRCS_MPLAYER-$(GIF) += libvo/vo_gif89a.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
548 SRCS_MPLAYER-$(GL) += libvo/gl_common.c libvo/vo_gl.c libvo/vo_gl2.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
549 SRCS_MPLAYER-$(GL_WIN32) += libvo/w32_common.c |
26785
a3eb683ccb2e
Introduce make variable common to the GTK and Windows GUI and use it
diego
parents:
26784
diff
changeset
|
550 SRCS_MPLAYER-$(GUI) += gui/bitmap.c |
26366
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
551 SRCS_MPLAYER-$(GUI_GTK) += gui/app.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
552 gui/cfg.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
553 gui/interface.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
554 gui/mplayer/gui_common.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
555 gui/mplayer/menu.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
556 gui/mplayer/mw.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
557 gui/mplayer/pb.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
558 gui/mplayer/play.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
559 gui/mplayer/sw.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
560 gui/mplayer/widgets.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
561 gui/mplayer/gtk/about.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
562 gui/mplayer/gtk/eq.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
563 gui/mplayer/gtk/fs.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
564 gui/mplayer/gtk/gtk_common.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
565 gui/mplayer/gtk/gtk_url.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
566 gui/mplayer/gtk/mb.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
567 gui/mplayer/gtk/menu.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
568 gui/mplayer/gtk/opts.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
569 gui/mplayer/gtk/pl.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
570 gui/mplayer/gtk/sb.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
571 gui/skin/cut.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
572 gui/skin/font.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
573 gui/skin/skin.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
574 gui/wm/ws.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
575 gui/wm/wsxdnd.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
576 |
26785
a3eb683ccb2e
Introduce make variable common to the GTK and Windows GUI and use it
diego
parents:
26784
diff
changeset
|
577 SRCS_MPLAYER-$(GUI_WIN32) += gui/win32/dialogs.c \ |
26366
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
578 gui/win32/gui.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
579 gui/win32/interface.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
580 gui/win32/playlist.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
581 gui/win32/preferences.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
582 gui/win32/skinload.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
583 gui/win32/widgetrender.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
584 gui/win32/wincfg.c \ |
cc260b44c154
Merge ./gui/Makefile into ./Makefile, one less instance of recursive make.
diego
parents:
26359
diff
changeset
|
585 |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
586 SRCS_MPLAYER-$(IVTV) += libao2/ao_ivtv.c libvo/vo_ivtv.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
587 SRCS_MPLAYER-$(JACK) += libao2/ao_jack.c |
26308
51338bf153de
Get rid of recursive make for the input/ subdirectory.
diego
parents:
26305
diff
changeset
|
588 SRCS_MPLAYER-$(JOYSTICK) += input/joystick.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
589 SRCS_MPLAYER-$(JPEG) += libvo/vo_jpeg.c |
28915
c2baa796c5e5
KVA vo driver for OS/2, patch by KO Myung-Hun, komh chollian net
diego
parents:
28910
diff
changeset
|
590 SRCS_MPLAYER-$(KVA) += libvo/vo_kva.c |
26359
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
591 SRCS_MPLAYER-$(LIBMENU) += libmenu/menu.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
592 libmenu/menu_chapsel.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
593 libmenu/menu_cmdlist.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
594 libmenu/menu_console.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
595 libmenu/menu_filesel.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
596 libmenu/menu_list.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
597 libmenu/menu_param.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
598 libmenu/menu_pt.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
599 libmenu/menu_txt.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
600 libmenu/vf_menu.c \ |
4a9b26db833e
Ahem, libmenu objects should only be compiled when OSD menu is enabled.
diego
parents:
26351
diff
changeset
|
601 |
26402
08117784bc9e
Add Makefile variable for DVB OSD menu, saves one ifeq.
diego
parents:
26399
diff
changeset
|
602 SRCS_MPLAYER-$(LIBMENU_DVBIN) += libmenu/menu_dvbin.c |
26586 | 603 SRCS_MPLAYER-$(LIRC) += input/lirc.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
604 SRCS_MPLAYER-$(MD5SUM) += libvo/vo_md5sum.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
605 SRCS_MPLAYER-$(MGA) += libvo/vo_mga.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
606 SRCS_MPLAYER-$(NAS) += libao2/ao_nas.c |
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
607 SRCS_MPLAYER-$(OPENAL) += libao2/ao_openal.c |
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
608 SRCS_MPLAYER-$(OSS) += libao2/ao_oss.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
609 SRCS_MPLAYER-$(PNG) += libvo/vo_png.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
610 SRCS_MPLAYER-$(PNM) += libvo/vo_pnm.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
611 SRCS_MPLAYER-$(PULSE) += libao2/ao_pulse.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
612 SRCS_MPLAYER-$(QUARTZ) += libvo/vo_quartz.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
613 SRCS_MPLAYER-$(S3FB) += libvo/vo_s3fb.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
614 SRCS_MPLAYER-$(SDL) += libao2/ao_sdl.c libvo/vo_sdl.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
615 SRCS_MPLAYER-$(SGIAUDIO) += libao2/ao_sgi.c |
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
616 SRCS_MPLAYER-$(SUNAUDIO) += libao2/ao_sun.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
617 SRCS_MPLAYER-$(SVGA) += libvo/vo_svga.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
618 SRCS_MPLAYER-$(TDFXFB) += libvo/vo_tdfxfb.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
619 SRCS_MPLAYER-$(TDFXVID) += libvo/vo_tdfx_vid.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
620 SRCS_MPLAYER-$(TGA) += libvo/vo_tga.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
621 SRCS_MPLAYER-$(V4L2) += libvo/vo_v4l2.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
622 SRCS_MPLAYER-$(V4L2) += libao2/ao_v4l2.c |
28582
4d64f83e2fac
Add support for VDPAU video out, including hardware decoding.
reimar
parents:
28526
diff
changeset
|
623 SRCS_MPLAYER-$(VDPAU) += libvo/vo_vdpau.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
624 SRCS_MPLAYER-$(VESA) += libvo/gtf.c libvo/vo_vesa.c libvo/vesa_lvo.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
625 SRCS_MPLAYER-$(VIDIX) += libvo/vo_cvidix.c \ |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
626 libvo/vosub_vidix.c \ |
27080 | 627 vidix/vidix.c \ |
26516 | 628 vidix/drivers.c \ |
629 vidix/dha.c \ | |
630 vidix/mtrr.c \ | |
631 vidix/pci.c \ | |
632 vidix/pci_names.c \ | |
633 vidix/pci_dev_ids.c\ | |
634 | |
26586 | 635 SRCS_MPLAYER-$(VIDIX_CYBERBLADE) += vidix/cyberblade_vid.c |
636 SRCS_MPLAYER-$(VIDIX_IVTV) += vidix/ivtv_vid.c | |
637 SRCS_MPLAYER-$(VIDIX_MACH64) += vidix/mach64_vid.c | |
638 SRCS_MPLAYER-$(VIDIX_MGA) += vidix/mga_vid.c | |
639 SRCS_MPLAYER-$(VIDIX_MGA_CRTC2) += vidix/mga_crtc2_vid.c | |
640 SRCS_MPLAYER-$(VIDIX_NVIDIA) += vidix/nvidia_vid.c | |
641 SRCS_MPLAYER-$(VIDIX_PM2) += vidix/pm2_vid.c | |
642 SRCS_MPLAYER-$(VIDIX_PM3) += vidix/pm3_vid.c | |
643 SRCS_MPLAYER-$(VIDIX_RADEON) += vidix/radeon_vid.c | |
644 SRCS_MPLAYER-$(VIDIX_RAGE128) += vidix/rage128_vid.c | |
645 SRCS_MPLAYER-$(VIDIX_S3) += vidix/s3_vid.c | |
27420
917c93c652b0
Add VIDIX driver for SuperH Mobile VEU hardware block.
ben
parents:
27411
diff
changeset
|
646 SRCS_MPLAYER-$(VIDIX_SH_VEU) += vidix/sh_veu_vid.c |
26586 | 647 SRCS_MPLAYER-$(VIDIX_SIS) += vidix/sis_vid.c vidix/sis_bridge.c |
648 SRCS_MPLAYER-$(VIDIX_UNICHROME) += vidix/unichrome_vid.c | |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
649 SRCS_MPLAYER-$(WII) += libvo/vo_wii.c |
28041
211c23dac000
Treat audio output objects the same as everything else in the build system,
diego
parents:
28018
diff
changeset
|
650 SRCS_MPLAYER-$(WIN32WAVEOUT) += libao2/ao_win32.c |
28046
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
651 SRCS_MPLAYER-$(WINVIDIX) += libvo/vo_winvidix.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
652 SRCS_MPLAYER-$(X11) += libvo/vo_x11.c libvo/vo_xover.c libvo/x11_common.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
653 SRCS_MPLAYER-$(XMGA) += libvo/vo_xmga.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
654 SRCS_MPLAYER-$(XV) += libvo/vo_xv.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
655 SRCS_MPLAYER-$(XVIDIX) += libvo/vo_xvidix.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
656 SRCS_MPLAYER-$(XVMC) += libvo/vo_xvmc.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
657 SRCS_MPLAYER-$(XVR100) += libvo/vo_xvr100.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
658 SRCS_MPLAYER-$(YUV4MPEG) += libvo/vo_yuv4mpeg.c |
7df791e22c3f
Treat video output objects the same as everything else in the build system,
diego
parents:
28043
diff
changeset
|
659 SRCS_MPLAYER-$(ZR) += libvo/jpeg_enc.c libvo/vo_zr.c libvo/vo_zr2.c |
26477 | 660 |
29167
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
661 SRCS_MPLAYER = mplayer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
662 m_property.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
663 mp_fifo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
664 mp_msg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
665 mixer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
666 parser-mpcmd.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
667 command.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
668 input/input.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
669 libao2/audio_out.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
670 libao2/ao_mpegpes.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
671 libao2/ao_null.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
672 libao2/ao_pcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
673 libvo/aspect.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
674 libvo/geometry.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
675 libvo/spuenc.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
676 libvo/video_out.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
677 libvo/vo_mpegpes.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
678 libvo/vo_null.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
679 $(SRCS_MPLAYER-yes) |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
680 |
15772 | 681 |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
682 SRCS_MENCODER-$(FAAC) += libmpcodecs/ae_faac.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
683 SRCS_MENCODER-$(LIBAVCODEC) += libmpcodecs/ae_lavc.c libmpcodecs/ve_lavc.c |
26491 | 684 SRCS_MENCODER-$(LIBAVFORMAT) += libmpdemux/muxer_lavf.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
685 SRCS_MENCODER-$(LIBDV) += libmpcodecs/ve_libdv.c |
28854
96c6451478af
rtjpegn.c is only needed by the NuppelVideo encoder, change Makefile accordingly
reimar
parents:
28853
diff
changeset
|
686 SRCS_MENCODER-$(LIBLZO) += libmpcodecs/ve_nuv.c libmpcodecs/native/rtjpegn.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
687 SRCS_MENCODER-$(MP3LAME) += libmpcodecs/ae_lame.c |
26513 | 688 SRCS_MENCODER-$(QTX_CODECS_WIN32) += libmpcodecs/ve_qtvideo.c |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
689 SRCS_MENCODER-$(TOOLAME) += libmpcodecs/ae_toolame.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
690 SRCS_MENCODER-$(TWOLAME) += libmpcodecs/ae_twolame.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
691 SRCS_MENCODER-$(WIN32DLL) += libmpcodecs/ve_vfw.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
692 SRCS_MENCODER-$(X264) += libmpcodecs/ve_x264.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
693 SRCS_MENCODER-$(XVID4) += libmpcodecs/ve_xvid4.c |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
694 |
29167
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
695 SRCS_MENCODER = mencoder.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
696 mp_msg-mencoder.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
697 parser-mecmd.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
698 xvid_vbr.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
699 libmpcodecs/ae.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
700 libmpcodecs/ae_pcm.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
701 libmpcodecs/ve.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
702 libmpcodecs/ve_raw.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
703 libmpdemux/muxer.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
704 libmpdemux/muxer_avi.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
705 libmpdemux/muxer_mpeg.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
706 libmpdemux/muxer_rawaudio.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
707 libmpdemux/muxer_rawvideo.c \ |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
708 $(SRCS_MENCODER-yes) |
aea4b698808e
Move non-conditional SRCS lists below the conditional parts. This allows
diego
parents:
29166
diff
changeset
|
709 |
15772 | 710 |
23281
e1935bbb44e2
Compile internal FFmpeg libraries only when configure enabled the static
diego
parents:
23220
diff
changeset
|
711 COMMON_LIBS-$(LIBAVFORMAT_A) += libavformat/libavformat.a |
e1935bbb44e2
Compile internal FFmpeg libraries only when configure enabled the static
diego
parents:
23220
diff
changeset
|
712 COMMON_LIBS-$(LIBAVCODEC_A) += libavcodec/libavcodec.a |
e1935bbb44e2
Compile internal FFmpeg libraries only when configure enabled the static
diego
parents:
23220
diff
changeset
|
713 COMMON_LIBS-$(LIBAVUTIL_A) += libavutil/libavutil.a |
e1935bbb44e2
Compile internal FFmpeg libraries only when configure enabled the static
diego
parents:
23220
diff
changeset
|
714 COMMON_LIBS-$(LIBPOSTPROC_A) += libpostproc/libpostproc.a |
27600 | 715 COMMON_LIBS-$(LIBSWSCALE_A) += libswscale/libswscale.a |
26577
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
716 COMMON_LIBS += $(COMMON_LIBS-yes) |
22796
7986e3f73008
cosmetics: Reorder parts of the Makefile in order to group parts sensibly together.
diego
parents:
22795
diff
changeset
|
717 |
26577
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
718 OBJS_COMMON += $(addsuffix .o, $(basename $(SRCS_COMMON))) |
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
719 OBJS_MENCODER += $(addsuffix .o, $(basename $(SRCS_MENCODER))) |
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
720 OBJS_MPLAYER += $(addsuffix .o, $(basename $(SRCS_MPLAYER))) |
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
721 OBJS_MPLAYER-$(PE_EXECUTABLE) += osdep/mplayer-rc.o |
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
722 OBJS_MPLAYER += $(OBJS_MPLAYER-yes) |
22796
7986e3f73008
cosmetics: Reorder parts of the Makefile in order to group parts sensibly together.
diego
parents:
22795
diff
changeset
|
723 |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
724 MENCODER_DEPS = $(OBJS_MENCODER) $(OBJS_COMMON) $(COMMON_LIBS) |
26555
a16bf3eba843
Get rid of now obsolete library rules and variables.
diego
parents:
26554
diff
changeset
|
725 MPLAYER_DEPS = $(OBJS_MPLAYER) $(OBJS_COMMON) $(COMMON_LIBS) |
27172
fa689f1b187b
Group some variable declarations together in sensible places.
diego
parents:
27171
diff
changeset
|
726 DEPS = $(filter-out %.S,$(patsubst %.cpp,%.d,$(patsubst %.c,%.d,$(SRCS_COMMON) $(SRCS_MPLAYER:.m=.d) $(SRCS_MENCODER)))) |
22796
7986e3f73008
cosmetics: Reorder parts of the Makefile in order to group parts sensibly together.
diego
parents:
22795
diff
changeset
|
727 |
26577
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
728 ALL_PRG-$(MPLAYER) += mplayer$(EXESUF) |
d1e4656332cf
cosmetics: Move some variable declarations to better places.
diego
parents:
26574
diff
changeset
|
729 ALL_PRG-$(MENCODER) += mencoder$(EXESUF) |
26563 | 730 |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
731 INSTALL_TARGETS-$(GUI) += install-gui |
26784
80227b63ccf8
install-mencoder-man depends on install-mplayer-man.
diego
parents:
26783
diff
changeset
|
732 INSTALL_TARGETS-$(MENCODER) += install-mencoder install-mencoder-man |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
733 INSTALL_TARGETS-$(MPLAYER) += install-mplayer install-mplayer-man |
22796
7986e3f73008
cosmetics: Reorder parts of the Makefile in order to group parts sensibly together.
diego
parents:
22795
diff
changeset
|
734 |
26551
fe2f16a7b128
Merge now redundant clean and distclean rules into the top-level Makefile.
diego
parents:
26549
diff
changeset
|
735 DIRS = . \ |
26496 | 736 gui \ |
26410
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
737 gui/mplayer \ |
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
738 gui/mplayer/gtk \ |
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
739 gui/skin \ |
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
740 gui/wm \ |
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
741 gui/win32 \ |
210f869a7a31
Add gui subdirectories to DIRS instead of manually cleaning them.
diego
parents:
26409
diff
changeset
|
742 input \ |
26522 | 743 liba52 \ |
26344
3278dca99929
Merge libaf/Makefile into Makefile, one less instance of recursive make.
diego
parents:
26331
diff
changeset
|
744 libaf \ |
26475 | 745 libao2 \ |
26324
7cd64946eb11
Merge libass/Makefile into Makefile, one less recursive make directory.
diego
parents:
26323
diff
changeset
|
746 libass \ |
26559
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
747 libavcodec \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
748 libavcodec/alpha \ |
28123 | 749 libavcodec/arm \ |
26559
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
750 libavcodec/bfin \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
751 libavcodec/mlib \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
752 libavcodec/ppc \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
753 libavcodec/sh4 \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
754 libavcodec/sparc \ |
28142 | 755 libavcodec/x86 \ |
26559
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
756 libavformat \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
757 libavutil \ |
29086
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
758 libavutil/arm \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
759 libavutil/bfin \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
760 libavutil/ppc \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
761 libavutil/sh4 \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
762 libavutil/x86 \ |
26492 | 763 libdvdcss \ |
28256
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
764 libdvdnav \ |
cd79547b7467
Support an "internal" dvdnav version to make it easier to compile with,
reimar
parents:
28245
diff
changeset
|
765 libdvdnav/vm \ |
28245
83266d299072
Switch internal dvdread to libdvdread SVN external.
reimar
parents:
28142
diff
changeset
|
766 libdvdread4 \ |
26494 | 767 libfaad2 \ |
26311
a3d7fc4f186e
Build all parts in the libmenu subdirectory nonrecursively.
diego
parents:
26308
diff
changeset
|
768 libmenu \ |
26482
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
769 libmpcodecs \ |
e3ddf3efdaec
Merge libmpcodecs/Makefile into top-level Makefile.
diego
parents:
26478
diff
changeset
|
770 libmpcodecs/native \ |
26491 | 771 libmpdemux \ |
26519 | 772 libmpeg2 \ |
26559
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
773 libpostproc \ |
3d56166e6566
Convert clean/distclean into non-recursive targets.
diego
parents:
26558
diff
changeset
|
774 libswscale \ |
29086
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
775 libswscale/bfin \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
776 libswscale/mlib \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
777 libswscale/ppc \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
778 libswscale/sparc \ |
b5c25fd3cf8f
Add recently added FFmpeg subdirs to DIRS variable.
diego
parents:
29006
diff
changeset
|
779 libswscale/x86 \ |
26477 | 780 libvo \ |
26541 | 781 loader \ |
782 loader/dshow \ | |
783 loader/dmo \ | |
26523 | 784 mp3lib \ |
26320
c0dba62cd135
Merge osdep/Makefile into the top-level Makefile, thus getting rid
diego
parents:
26311
diff
changeset
|
785 osdep \ |
26483 | 786 stream \ |
787 stream/freesdp \ | |
788 stream/librtsp \ | |
789 stream/realrtsp \ | |
26471 | 790 tremor \ |
26455 | 791 TOOLS \ |
26516 | 792 vidix \ |
7474 | 793 |
27172
fa689f1b187b
Group some variable declarations together in sensible places.
diego
parents:
27171
diff
changeset
|
794 ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h)) |
fa689f1b187b
Group some variable declarations together in sensible places.
diego
parents:
27171
diff
changeset
|
795 |
29161
68dbcaf8e594
Introduce ADDSUFFIXES function and use it to simplify the
diego
parents:
29160
diff
changeset
|
796 ADDSUFFIXES = $(foreach suf,$(1),$(addsuffix $(suf),$(2))) |
68dbcaf8e594
Introduce ADDSUFFIXES function and use it to simplify the
diego
parents:
29160
diff
changeset
|
797 ADD_ALL_DIRS = $(call ADDSUFFIXES,$(1),$(DIRS)) |
68dbcaf8e594
Introduce ADDSUFFIXES function and use it to simplify the
diego
parents:
29160
diff
changeset
|
798 ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1)) |
29160
001484135b6f
cosmetics: Move ADD_ALL_* functions to a more sensible place.
diego
parents:
29156
diff
changeset
|
799 |
29155 | 800 FFMPEGPARTS = libavcodec \ |
29156 | 801 libavformat \ |
802 libavutil \ | |
803 libpostproc \ | |
804 libswscale \ | |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
805 |
29155 | 806 FFMPEGLIBS = $(foreach part, $(FFMPEGPARTS), $(part)/$(part).a) |
29163
e5e1ecf7a172
Only add existing files to the FFMPEGFILES variable.
diego
parents:
29162
diff
changeset
|
807 FFMPEGFILES = $(foreach part, $(FFMPEGPARTS), $(wildcard $(part)/*.[chS] $(part)/*/*.[chS])) |
27172
fa689f1b187b
Group some variable declarations together in sensible places.
diego
parents:
27171
diff
changeset
|
808 |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
809 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
810 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
811 ###### generic rules ####### |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
812 |
26794
cf60ce406b0b
one less level of indirection for install and program targets
diego
parents:
26791
diff
changeset
|
813 all: $(ALL_PRG-yes) |
7474 | 814 |
26563 | 815 %.d: %.c |
816 $(MPDEPEND_CMD) > $@ | |
817 | |
818 %.d: %.cpp | |
819 $(MPDEPEND_CMD_CXX) > $@ | |
820 | |
821 %.d: %.m | |
822 $(MPDEPEND_CMD) > $@ | |
823 | |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
824 %.ho: %.h |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
825 $(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $< |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
826 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
827 %.o: %.m |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
828 $(CC) $(CFLAGS) -c -o $@ $< |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
829 |
27187 | 830 %-rc.o: %.rc |
831 $(WINDRES) -I. $< $@ | |
832 | |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
833 checkheaders: $(ALLHEADERS:.h=.ho) |
26572
cbd512d4a527
Explicitly declare which dependency files need generated headers.
diego
parents:
26569
diff
changeset
|
834 |
26432
7f5696224182
per-file dependencies (for the non-recursive parts)
diego
parents:
26430
diff
changeset
|
835 dep depend: $(DEPS) |
29155 | 836 for part in $(FFMPEGPARTS); do $(MAKE) -C $$part depend; done |
23181
802db540ff83
cosmetics: Move depend target (preparation for upcoming change).
diego
parents:
23093
diff
changeset
|
837 |
27433
9aec56f5e314
FFmpeg no longer has fastmemcpy support, so no longer trigger recursing
diego
parents:
27420
diff
changeset
|
838 $(FFMPEGLIBS): $(FFMPEGFILES) config.h |
26826
039574a7dc1e
Get rid of "define RECURSIVE_RULE" since a lot of make version have problems
reimar
parents:
26804
diff
changeset
|
839 $(MAKE) -C $(@D) |
27099
1294f728042a
Touch FFmpeg libraries after recursing into their subdirectories.
diego
parents:
27098
diff
changeset
|
840 touch $@ |
1 | 841 |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
842 mencoder$(EXESUF): $(MENCODER_DEPS) |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
843 $(CC) -o $@ $^ $(LDFLAGS_MENCODER) |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
844 |
21085 | 845 mplayer$(EXESUF): $(MPLAYER_DEPS) |
21130
44dcb71f9751
Split libs that are dependencies and those that are just linker flags.
diego
parents:
21128
diff
changeset
|
846 $(CC) -o $@ $^ $(LDFLAGS_MPLAYER) |
1 | 847 |
28736
a327875b3c60
codec-cfg does not depend on codecs.conf.h, it is used to generate it.
diego
parents:
28735
diff
changeset
|
848 codec-cfg$(EXESUF): codec-cfg.c help_mp.h |
29006
1ce71e660a4b
Do not use full CFLAGS to build codec-cfg, they are unnecessary.
diego
parents:
28915
diff
changeset
|
849 $(HOST_CC) -O -DCODECS2HTML -I. -o $@ $< |
19051 | 850 |
20791 | 851 codecs.conf.h: codec-cfg$(EXESUF) etc/codecs.conf |
27190 | 852 ./$^ > $@ |
8467
3ca9cc46df5c
Fallback to builtin (generated from etc/codecs.conf at compile time)
arpi
parents:
8353
diff
changeset
|
853 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
854 # ./configure must be rerun if it changed |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
855 config.mak: configure |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
856 @echo "############################################################" |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
857 @echo "####### Please run ./configure again - it's changed! #######" |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
858 @echo "############################################################" |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
859 |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
860 help_mp.h: help/help_mp-en.h $(HELP_FILE) |
26878
73921138ff30
Move messages header file creation to a separate shell script.
diego
parents:
26872
diff
changeset
|
861 help/help_create.sh $(HELP_FILE) $(CHARSET) |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
862 |
26855 | 863 # rebuild version.h each time the working copy is updated |
864 ifeq ($(wildcard .svn/entries),.svn/entries) | |
865 version.h: .svn/entries | |
866 endif | |
28334 | 867 version.h: version.sh |
868 ./$< `$(CC) -dumpversion` | |
26855 | 869 |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
870 %(EXESUF): %.c |
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
871 |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
872 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
873 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
874 ###### dependency declarations / specific CFLAGS ###### |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
875 |
28735
ec73d66cf714
Make all object files depend on generated header files.
diego
parents:
28734
diff
changeset
|
876 # Make sure all generated header files are created. |
29113
239a06704f60
Specify precise dependencies for generated header file codecs.conf.h.
diego
parents:
29112
diff
changeset
|
877 codec-cfg.d codec-cfg.o: codecs.conf.h |
239a06704f60
Specify precise dependencies for generated header file codecs.conf.h.
diego
parents:
29112
diff
changeset
|
878 $(DEPS) $(MENCODER_DEPS) $(MPLAYER_DEPS): help_mp.h |
29162
aaff2410e8a8
Use ADDSUFFIXES function to simplify version.h dependency declaration.
diego
parents:
29161
diff
changeset
|
879 $(call ADDSUFFIXES,.d .o,mpcommon vobsub stream/stream_cddb stream/network libmpdemux/muxer_avi gui/win32/gui): version.h |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
880 |
28792 | 881 libdvdcss/%: CFLAGS += -D__USE_UNIX98 -D_GNU_SOURCE -DVERSION=\"1.2.10\" $(CFLAGS_LIBDVDCSS) |
882 libdvdnav/%: CFLAGS += -D__USE_UNIX98 -D_GNU_SOURCE -DHAVE_CONFIG_H -DVERSION=\"MPlayer-custom\" | |
28794
ee67a72f9dde
Only add -Ilibdvdnav to the CFLAGS of the files that require it.
diego
parents:
28792
diff
changeset
|
883 libdvdnav/% stream/stream_dvdnav%: CFLAGS += $(CFLAGS_LIBDVDNAV) |
28792 | 884 libdvdread4/%: CFLAGS += -D__USE_UNIX98 -D_GNU_SOURCE -DHAVE_CONFIG_H $(CFLAGS_LIBDVDCSS_DVDREAD) |
885 libfaad2/%: CFLAGS += -Ilibfaad2 -D_GNU_SOURCE -DHAVE_CONFIG_H $(CFLAGS_FAAD_FIXED) | |
26492 | 886 |
28792 | 887 loader/%: CFLAGS += -Iloader -fno-omit-frame-pointer $(CFLAGS_NO_OMIT_LEAF_FRAME_POINTER) |
888 #loader/%: CFLAGS += -Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT | |
889 loader/win32%: CFLAGS += $(CFLAGS_STACKREALIGN) | |
26541 | 890 |
28792 | 891 mp3lib/decode_i586%: CFLAGS += -fomit-frame-pointer |
26523 | 892 |
28792 | 893 tremor/%: CFLAGS += $(CFLAGS_TREMOR_LOW) |
27404
778fac8c186f
Add separate variables for CFLAGS that are specific to internal libraries
diego
parents:
27402
diff
changeset
|
894 |
27402 | 895 vidix/%: CFLAGS += $(CFLAGS_DHAHELPER) $(CFLAGS_SVGALIB_HELPER) |
26993 | 896 |
26516 | 897 VIDIX_PCI_FILES = vidix/pci_dev_ids.c vidix/pci_ids.h vidix/pci_names.c \ |
898 vidix/pci_names.h vidix/pci_vendors.h | |
899 | |
28375 | 900 $(VIDIX_PCI_FILES): vidix/pci_db2c.awk vidix/pci.db |
901 awk -f $^ $(VIDIX_PCIDB) | |
26516 | 902 |
26539
d572ecfb34ae
Make sure all autogenerated .h and .c files exist in the vidix subdirectory
diego
parents:
26525
diff
changeset
|
903 VIDIX_DEPS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.d)) |
d572ecfb34ae
Make sure all autogenerated .h and .c files exist in the vidix subdirectory
diego
parents:
26525
diff
changeset
|
904 VIDIX_OBJS = $(filter vidix/%,$(SRCS_MPLAYER:.c=.o)) |
d572ecfb34ae
Make sure all autogenerated .h and .c files exist in the vidix subdirectory
diego
parents:
26525
diff
changeset
|
905 |
d572ecfb34ae
Make sure all autogenerated .h and .c files exist in the vidix subdirectory
diego
parents:
26525
diff
changeset
|
906 $(VIDIX_DEPS) $(VIDIX_OBJS): $(VIDIX_PCI_FILES) |
26516 | 907 |
26589
47f08d44cfa7
Add testclean target and make distclean depend upon it.
diego
parents:
26588
diff
changeset
|
908 |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
909 |
26863 | 910 ###### installation / clean / generic rules ####### |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
911 |
26794
cf60ce406b0b
one less level of indirection for install and program targets
diego
parents:
26791
diff
changeset
|
912 install: $(INSTALL_TARGETS-yes) |
22052
d90d335368b1
Replace ifeq structure in the install target by a set of dependent targets.
diego
parents:
21999
diff
changeset
|
913 |
22054 | 914 install-dirs: |
27759 | 915 $(INSTALL) -d $(BINDIR) $(CONFDIR) $(LIBDIR) |
22052
d90d335368b1
Replace ifeq structure in the install target by a set of dependent targets.
diego
parents:
21999
diff
changeset
|
916 |
26791
daa735e525a4
install-mplayer and install-mencoder targets should depend on install-dirs.
diego
parents:
26790
diff
changeset
|
917 install-%: %$(EXESUF) install-dirs |
26777 | 918 $(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR) |
22052
d90d335368b1
Replace ifeq structure in the install target by a set of dependent targets.
diego
parents:
21999
diff
changeset
|
919 |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
920 install-gui: install-mplayer |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
921 -ln -sf mplayer$(EXESUF) $(BINDIR)/gmplayer$(EXESUF) |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
922 $(INSTALL) -d $(DATADIR)/skins $(prefix)/share/pixmaps $(prefix)/share/applications |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
923 $(INSTALL) -m 644 etc/mplayer.xpm $(prefix)/share/pixmaps/ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
924 $(INSTALL) -m 644 etc/mplayer.desktop $(prefix)/share/applications/ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
925 |
29110 | 926 install-gui-man: $(foreach lang,$(MAN_LANGS),install-gui-man-$(lang)) |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
927 install-mencoder-man: $(foreach lang,$(MAN_LANGS),install-mencoder-man-$(lang)) |
27279 | 928 install-mplayer-man: $(foreach lang,$(MAN_LANGS),install-mplayer-man-$(lang)) |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
929 |
29110 | 930 install-gui-man-en: install-mplayer-man-en |
931 cd $(MANDIR)/man1/ && ln -sf mplayer.1 gmplayer.1 | |
932 | |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
933 install-mencoder-man-en: install-mplayer-man-en |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
934 cd $(MANDIR)/man1 && ln -sf mplayer.1 mencoder.1 |
26788
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
935 |
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
936 install-mplayer-man-en: |
26789
49eb016d1219
Install the required man page directories in the man page targets.
diego
parents:
26788
diff
changeset
|
937 $(INSTALL) -d $(MANDIR)/man1 |
28388
69391048c83c
Remove -c option from install commands. It is ignored by GNU install and
diego
parents:
28375
diff
changeset
|
938 $(INSTALL) -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ |
26788
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
939 |
29110 | 940 define GUI_MAN_RULE |
941 install-gui-man-$(lang): install-mplayer-man-$(lang) | |
942 cd $(MANDIR)/$(lang)/man1/ && ln -sf mplayer.1 gmplayer.1 | |
943 endef | |
944 | |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
945 define MENCODER_MAN_RULE |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
946 install-mencoder-man-$(lang): install-mplayer-man-$(lang) |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
947 cd $(MANDIR)/$(lang)/man1 && ln -sf mplayer.1 mencoder.1 |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
948 endef |
22052
d90d335368b1
Replace ifeq structure in the install target by a set of dependent targets.
diego
parents:
21999
diff
changeset
|
949 |
26788
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
950 define MPLAYER_MAN_RULE |
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
951 install-mplayer-man-$(lang): |
26789
49eb016d1219
Install the required man page directories in the man page targets.
diego
parents:
26788
diff
changeset
|
952 $(INSTALL) -d $(MANDIR)/$(lang)/man1 |
28388
69391048c83c
Remove -c option from install commands. It is ignored by GNU install and
diego
parents:
28375
diff
changeset
|
953 $(INSTALL) -m 644 DOCS/man/$(lang)/mplayer.1 $(MANDIR)/$(lang)/man1/ |
26788
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
954 endef |
0bec9426c86d
Replace hackish shell loops for man page installation with make constructs.
diego
parents:
26787
diff
changeset
|
955 |
29110 | 956 $(foreach lang,$(filter-out en,$(MAN_LANG_ALL)),$(eval $(GUI_MAN_RULE))) |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
957 $(foreach lang,$(filter-out en,$(MAN_LANG_ALL)),$(eval $(MENCODER_MAN_RULE))) |
27298
0de5b595d2ae
Remove "en" from list of all man page languages when generating man page
diego
parents:
27279
diff
changeset
|
958 $(foreach lang,$(filter-out en,$(MAN_LANG_ALL)),$(eval $(MPLAYER_MAN_RULE))) |
22052
d90d335368b1
Replace ifeq structure in the install target by a set of dependent targets.
diego
parents:
21999
diff
changeset
|
959 |
2385
78209b784fec
Add uninstall target, patch by Clemens W«£chter <clemenswaechter@yahoo.com>
atmos4
parents:
2310
diff
changeset
|
960 uninstall: |
26772
e60dfd4ffeae
There is no need to ignore errors from 'rm -f' commands.
diego
parents:
26771
diff
changeset
|
961 rm -f $(BINDIR)/mplayer$(EXESUF) $(BINDIR)/gmplayer$(EXESUF) |
e60dfd4ffeae
There is no need to ignore errors from 'rm -f' commands.
diego
parents:
26771
diff
changeset
|
962 rm -f $(BINDIR)/mencoder$(EXESUF) |
e60dfd4ffeae
There is no need to ignore errors from 'rm -f' commands.
diego
parents:
26771
diff
changeset
|
963 rm -f $(MANDIR)/man1/mencoder.1 $(MANDIR)/man1/mplayer.1 |
e60dfd4ffeae
There is no need to ignore errors from 'rm -f' commands.
diego
parents:
26771
diff
changeset
|
964 rm -f $(prefix)/share/pixmaps/mplayer.xpm |
e60dfd4ffeae
There is no need to ignore errors from 'rm -f' commands.
diego
parents:
26771
diff
changeset
|
965 rm -f $(prefix)/share/applications/mplayer.desktop |
26782
5282159223e2
Always uninstall English man pages instead of never.
diego
parents:
26781
diff
changeset
|
966 rm -f $(MANDIR)/man1/mplayer.1 $(MANDIR)/man1/mencoder.1 |
27279 | 967 rm -f $(foreach lang,$(MAN_LANGS),$(foreach man,mplayer.1 mencoder.1,$(MANDIR)/$(lang)/man1/$(man))) |
2385
78209b784fec
Add uninstall target, patch by Clemens W«£chter <clemenswaechter@yahoo.com>
atmos4
parents:
2310
diff
changeset
|
968 |
26590 | 969 clean: |
29154
d26f4b307224
Introduce ADD_ALL_DIRS function to factorize clean and distclean target commands
diego
parents:
29153
diff
changeset
|
970 -rm -f $(call ADD_ALL_DIRS,/*.o /*.a /*.ho /*~) |
29152
97ab4928cd4d
Extend ADD_ALL_EXESUFS to work with a list of files instead of a single one.
diego
parents:
29151
diff
changeset
|
971 -rm -f $(call ADD_ALL_EXESUFS,mplayer mencoder) |
19292
20938447bb55
'make clean' now recurses through subdirectories as expected,
diego
parents:
19283
diff
changeset
|
972 |
27185
ff18b81371e5
Also remove dhahelper and dhahelperwin on distclean.
diego
parents:
27173
diff
changeset
|
973 distclean: clean testsclean toolsclean driversclean dhahelperclean dhahelperwinclean |
28505
f3fa6fe243e6
Ignore errors from all rm commands in clean targets.
diego
parents:
28504
diff
changeset
|
974 -rm -rf DOCS/tech/doxygen |
29154
d26f4b307224
Introduce ADD_ALL_DIRS function to factorize clean and distclean target commands
diego
parents:
29153
diff
changeset
|
975 -rm -f $(call ADD_ALL_DIRS,/*.d) |
28505
f3fa6fe243e6
Ignore errors from all rm commands in clean targets.
diego
parents:
28504
diff
changeset
|
976 -rm -f configure.log config.mak config.h codecs.conf.h help_mp.h \ |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
977 version.h $(VIDIX_PCI_FILES) TAGS tags |
29152
97ab4928cd4d
Extend ADD_ALL_EXESUFS to work with a list of files instead of a single one.
diego
parents:
29151
diff
changeset
|
978 -rm -f $(call ADD_ALL_EXESUFS,codec-cfg cpuinfo) |
1 | 979 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
980 doxygen: |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
981 doxygen DOCS/tech/Doxyfile |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
982 |
25633 | 983 TAGS: |
27906 | 984 rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs etags -a |
25633 | 985 |
986 tags: | |
27906 | 987 rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs ctags -a |
25633 | 988 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
989 |
26676
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
990 |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
991 ###### tests / tools ####### |
84d1a6f19490
Add some comment headings to divide the Makefile into logical chapters.
diego
parents:
26675
diff
changeset
|
992 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
993 TEST_OBJS = mp_msg-mencoder.o mp_fifo.o osdep/$(GETCH) osdep/$(TIMER) -ltermcap -lm |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
994 |
28733
702db4355c75
Fix dependencies on generated header files for the codec* binaries.
diego
parents:
28661
diff
changeset
|
995 codec-cfg-test$(EXESUF): codec-cfg.c codecs.conf.h help_mp.h $(TEST_OBJS) |
27399
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
996 $(CC) -I. -DTESTING -o $@ $^ |
eb9b0b46009d
cosmetics: Sort things into alphabetical order in various places.
diego
parents:
27397
diff
changeset
|
997 |
28733
702db4355c75
Fix dependencies on generated header files for the codec* binaries.
diego
parents:
28661
diff
changeset
|
998 codecs2html$(EXESUF): codec-cfg.c help_mp.h $(TEST_OBJS) |
26862
4e767be57263
cosmetics: Consistently place '-o $@' in compiler command line.
diego
parents:
26861
diff
changeset
|
999 $(CC) -I. -DCODECS2HTML -o $@ $^ |
26855 | 1000 |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
1001 liba52/test$(EXESUF): cpudetect.o $(filter liba52/%,$(SRCS_COMMON:.c=.o)) -lm |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1002 |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
1003 libvo/aspecttest$(EXESUF): libvo/aspect.o libvo/geometry.o $(TEST_OBJS) |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1004 |
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1005 LOADER_TEST_OBJS = $(filter loader/%,$(SRCS_COMMON:.c=.o)) libmpdemux/aviprint.o osdep/mmap_anon.o cpudetect.o $(TEST_OBJS) |
26563 | 1006 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1007 loader/qtx/list$(EXESUF) loader/qtx/qtxload$(EXESUF): CFLAGS += -g |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
1008 loader/qtx/list$(EXESUF) loader/qtx/qtxload$(EXESUF): $(LOADER_TEST_OBJS) |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1009 |
27157
e2797c291ba9
Put common dependencies of mp3lib/test + mp3lib/test2 on a common line.
diego
parents:
27154
diff
changeset
|
1010 mp3lib/test$(EXESUF) mp3lib/test2$(EXESUF): $(filter mp3lib/%,$(SRCS_COMMON:.c=.o)) libvo/aclib.o cpudetect.o $(TEST_OBJS) |
6958
9cb1efcc5640
'configure changed'-test re-added, noticed by Sylvain Petreolle <spetreolle@yahoo.fr>
arpi
parents:
6948
diff
changeset
|
1011 |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1012 TESTS = codecs2html codec-cfg-test liba52/test libvo/aspecttest \ |
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1013 mp3lib/test mp3lib/test2 |
13097 | 1014 |
27160 | 1015 ifdef ARCH_X86 |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1016 TESTS += loader/qtx/list loader/qtx/qtxload |
27160 | 1017 endif |
1018 | |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1019 tests: $(addsuffix $(EXESUF),$(TESTS)) |
13097 | 1020 |
26675
6b747c6ce030
cosmetics: Move some stuff around for more logical grouping.
diego
parents:
26672
diff
changeset
|
1021 testsclean: |
29152
97ab4928cd4d
Extend ADD_ALL_EXESUFS to work with a list of files instead of a single one.
diego
parents:
29151
diff
changeset
|
1022 -rm -f $(call ADD_ALL_EXESUFS,$(TESTS)) |
26455 | 1023 |
28910 | 1024 TOOLS = $(addprefix TOOLS/,alaw-gen asfinfo avi-fix avisubdump compare dump_mp4 movinfo netstream subrip vivodump) |
26455 | 1025 |
1026 ifdef ARCH_X86 | |
28910 | 1027 TOOLS += TOOLS/fastmemcpybench TOOLS/modify_reg |
26455 | 1028 endif |
1029 | |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1030 ALLTOOLS = $(TOOLS) TOOLS/bmovl-test TOOLS/vfw2menc |
26512
a1dc4d5b5b40
Add alltools target and variable to build non-linking tools.
diego
parents:
26511
diff
changeset
|
1031 |
28504
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1032 tools: $(addsuffix $(EXESUF),$(TOOLS)) |
b983d65e840c
On clean/distclean, remove binaries with all types of executable suffixes.
diego
parents:
28503
diff
changeset
|
1033 alltools: $(addsuffix $(EXESUF),$(ALLTOOLS)) |
26455 | 1034 |
26864
428910380407
cosmetics: Move toolsclean target to a better place.
diego
parents:
26863
diff
changeset
|
1035 toolsclean: |
29153 | 1036 -rm -f $(call ADD_ALL_EXESUFS,$(ALLTOOLS)) |
28894
b29169fccda9
Fix and restructure fastmemcpybench. It is now one binary that runs all
diego
parents:
28872
diff
changeset
|
1037 -rm -f TOOLS/realcodecs/*.so.6.0 |
26864
428910380407
cosmetics: Move toolsclean target to a better place.
diego
parents:
26863
diff
changeset
|
1038 |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
1039 TOOLS/bmovl-test$(EXESUF): -lSDL_image |
26455 | 1040 |
27186 | 1041 TOOLS/subrip$(EXESUF): vobsub.o spudec.o unrar_exec.o libvo/aclib.o \ |
1042 libswscale/libswscale.a libavutil/libavutil.a $(TEST_OBJS) | |
26455 | 1043 |
27161
b4094f8dccf0
Simplify tool generation rules with a pattern rule.
diego
parents:
27160
diff
changeset
|
1044 TOOLS/vfw2menc$(EXESUF): -lwinmm -lole32 |
26455 | 1045 |
26963
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26904
diff
changeset
|
1046 mplayer-nomain.o: mplayer.c |
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26904
diff
changeset
|
1047 $(CC) $(CFLAGS) -DDISABLE_MAIN -c -o $@ $< |
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26904
diff
changeset
|
1048 |
27154
01526c8e2d75
Declare common netstream + vivodump dependencies in the common place.
diego
parents:
27151
diff
changeset
|
1049 TOOLS/netstream$(EXESUF): TOOLS/netstream.c |
01526c8e2d75
Declare common netstream + vivodump dependencies in the common place.
diego
parents:
27151
diff
changeset
|
1050 TOOLS/vivodump$(EXESUF): TOOLS/vivodump.c |
01526c8e2d75
Declare common netstream + vivodump dependencies in the common place.
diego
parents:
27151
diff
changeset
|
1051 TOOLS/netstream$(EXESUF) TOOLS/vivodump$(EXESUF): $(subst mplayer.o,mplayer-nomain.o,$(OBJS_MPLAYER)) $(filter-out %mencoder.o,$(OBJS_MENCODER)) $(OBJS_COMMON) $(COMMON_LIBS) |
26963
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26904
diff
changeset
|
1052 $(CC) $(CFLAGS) -o $@ $^ $(EXTRALIBS_MPLAYER) $(EXTRALIBS_MENCODER) $(COMMON_LDFLAGS) |
26455 | 1053 |
1054 REAL_SRCS = $(wildcard TOOLS/realcodecs/*.c) | |
1055 REAL_TARGETS = $(REAL_SRCS:.c=.so.6.0) | |
1056 | |
1057 realcodecs: $(REAL_TARGETS) | |
28894
b29169fccda9
Fix and restructure fastmemcpybench. It is now one binary that runs all
diego
parents:
28872
diff
changeset
|
1058 realcodecs: CFLAGS += -g |
26455 | 1059 |
1060 %.so.6.0: %.o | |
1061 ld -shared -o $@ $< -ldl -lc | |
1062 | |
26882 | 1063 |
1064 | |
1065 ###### drivers ####### | |
1066 | |
1067 KERNEL_INC = /lib/modules/`uname -r`/build/include | |
1068 KERNEL_VERSION = $(shell grep RELEASE $(KERNEL_INC)/linux/version.h | cut -d'"' -f2) | |
1069 KERNEL_CFLAGS = -O2 -D__KERNEL__ -DMODULE -Wall -I$(KERNEL_INC) -include $(KERNEL_INC)/linux/modversions.h | |
1070 KERNEL_OBJS = $(addprefix drivers/, mga_vid.o tdfx_vid.o radeon_vid.o rage128_vid.o) | |
1071 MODULES_DIR = /lib/modules/$(KERNEL_VERSION)/misc | |
27191
0c39ee17759a
Introduce DRIVER_OBJS variable for list of all driver targets.
diego
parents:
27190
diff
changeset
|
1072 DRIVER_OBJS = $(KERNEL_OBJS) drivers/mga_vid_test drivers/tdfx_vid_test |
26882 | 1073 |
27191
0c39ee17759a
Introduce DRIVER_OBJS variable for list of all driver targets.
diego
parents:
27190
diff
changeset
|
1074 drivers: $(DRIVER_OBJS) |
26882 | 1075 |
27191
0c39ee17759a
Introduce DRIVER_OBJS variable for list of all driver targets.
diego
parents:
27190
diff
changeset
|
1076 $(DRIVER_OBJS): CFLAGS = $(KERNEL_CFLAGS) |
26882 | 1077 drivers/mga_vid.o: drivers/mga_vid.c drivers/mga_vid.h |
1078 drivers/tdfx_vid.o: drivers/tdfx_vid.c drivers/3dfx.h | |
1079 drivers/radeon_vid.o drivers/rage128_vid.o: CFLAGS += -fomit-frame-pointer -fno-strict-aliasing -fno-common -ffast-math | |
1080 drivers/radeon_vid.o: drivers/radeon_vid.c drivers/radeon.h drivers/radeon_vid.h | |
1081 drivers/rage128_vid.o: drivers/radeon_vid.c drivers/radeon.h drivers/radeon_vid.h | |
1082 $(CC) $(CFLAGS) -DRAGE128 -c $< -o $@ | |
1083 | |
27191
0c39ee17759a
Introduce DRIVER_OBJS variable for list of all driver targets.
diego
parents:
27190
diff
changeset
|
1084 install-drivers: $(DRIVER_OBJS) |
26882 | 1085 -mkdir -p $(MODULES_DIR) |
1086 install -m 644 $(KERNEL_OBJS) $(MODULES_DIR) | |
1087 depmod -a | |
1088 -mknod /dev/mga_vid c 178 0 | |
1089 -mknod /dev/tdfx_vid c 178 0 | |
1090 -mknod /dev/radeon_vid c 178 0 | |
1091 -ln -s /dev/radeon_vid /dev/rage128_vid | |
1092 | |
1093 driversclean: | |
28505
f3fa6fe243e6
Ignore errors from all rm commands in clean targets.
diego
parents:
28504
diff
changeset
|
1094 -rm -f $(DRIVER_OBJS) drivers/*~ |
26882 | 1095 |
26902
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1096 dhahelper: vidix/dhahelper/dhahelper.o vidix/dhahelper/test |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1097 |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1098 vidix/dhahelper/dhahelper.o vidix/dhahelper/test: CFLAGS = $(KERNEL_CFLAGS) |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1099 vidix/dhahelper/dhahelper.o: vidix/dhahelper/dhahelper.c vidix/dhahelper/dhahelper.h |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1100 |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1101 install-dhahelper: vidix/dhahelper/dhahelper.o |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1102 -mkdir -p $(MODULES_DIR) |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1103 install -m 644 $< $(MODULES_DIR) |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1104 depmod -a |
27000
c86217387637
Add command to create dhahelper device to install-dhahelper target.
diego
parents:
26999
diff
changeset
|
1105 -mknod /dev/dhahelper c 180 0 |
26902
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1106 |
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1107 dhahelperclean: |
28505
f3fa6fe243e6
Ignore errors from all rm commands in clean targets.
diego
parents:
28504
diff
changeset
|
1108 -rm -f vidix/dhahelper/*.o vidix/dhahelper/*~ vidix/dhahelper/test |
26902
95d324b7de18
Merge vidix/dhahelper/Makefile into top-level Makefile.
diego
parents:
26884
diff
changeset
|
1109 |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1110 dhahelperwin: vidix/dhahelperwin/dhasetup.exe vidix/dhahelperwin/dhahelper.sys |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1111 |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1112 vidix/dhahelperwin/dhasetup.exe: vidix/dhahelperwin/dhasetup.c |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1113 $(CC) -o $@ $< |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1114 |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1115 vidix/dhahelperwin/dhahelper.o: vidix/dhahelperwin/dhahelper.c vidix/dhahelperwin/dhahelper.h |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1116 $(CC) -Wall -Os -c $< -o $@ |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1117 |
27188 | 1118 vidix/dhahelperwin/dhahelper-rc.o: vidix/dhahelperwin/common.ver vidix/dhahelperwin/ntverp.h |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1119 |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1120 vidix/dhahelperwin/base.tmp: vidix/dhahelperwin/dhahelper.o vidix/dhahelperwin/dhahelper-rc.o |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1121 $(CC) -Wl,--base-file,$@ -Wl,--entry,_DriverEntry@8 -nostartfiles \ |
28780
0f67e29affb9
Simplify some vidix dhahelper build commands with automatic make variables.
diego
parents:
28740
diff
changeset
|
1122 -nostdlib -o $(@D)/junk.tmp $^ -lntoskrnl |
0f67e29affb9
Simplify some vidix dhahelper build commands with automatic make variables.
diego
parents:
28740
diff
changeset
|
1123 -rm -f $(@D)/junk.tmp |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1124 |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1125 vidix/dhahelperwin/temp.exp: vidix/dhahelperwin/base.tmp |
28780
0f67e29affb9
Simplify some vidix dhahelper build commands with automatic make variables.
diego
parents:
28740
diff
changeset
|
1126 dlltool --dllname $(@D)/dhahelper.sys --base-file $< --output-exp $@ |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1127 |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1128 vidix/dhahelperwin/dhahelper.sys: vidix/dhahelperwin/temp.exp vidix/dhahelperwin/dhahelper.o vidix/dhahelperwin/dhahelper-rc.o |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1129 $(CC) -Wl,--subsystem,native -Wl,--image-base,0x10000 \ |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1130 -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 \ |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1131 -Wl,--entry,_DriverEntry@8 -Wl,$< -mdll -nostartfiles -nostdlib \ |
28780
0f67e29affb9
Simplify some vidix dhahelper build commands with automatic make variables.
diego
parents:
28740
diff
changeset
|
1132 -o $@ $(@:.sys=.o) $(@:.sys=-rc.o) -lntoskrnl |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1133 strip $@ |
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1134 |
26904
b4a743e6d17d
Add install-dhahelperwin target to simplify dhahelper installation on Windows.
diego
parents:
26903
diff
changeset
|
1135 install-dhahelperwin: |
b4a743e6d17d
Add install-dhahelperwin target to simplify dhahelper installation on Windows.
diego
parents:
26903
diff
changeset
|
1136 vidix/dhahelperwin/dhasetup.exe install |
b4a743e6d17d
Add install-dhahelperwin target to simplify dhahelper installation on Windows.
diego
parents:
26903
diff
changeset
|
1137 |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1138 dhahelperwinclean: |
28505
f3fa6fe243e6
Ignore errors from all rm commands in clean targets.
diego
parents:
28504
diff
changeset
|
1139 -rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp) |
26903
5ed6787022c4
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
diego
parents:
26902
diff
changeset
|
1140 |
26882 | 1141 |
1142 | |
27439
1bbfa128dc71
Remove SKIP_DEPS trick. The same effect can be achieved without it.
diego
parents:
27433
diff
changeset
|
1143 # Do not include dependencies when they are about to be removed anyway. |
27411
c38f90ae922a
Skip dependency generation if we just run distclean or if skipping
diego
parents:
27404
diff
changeset
|
1144 ifneq ($(MAKECMDGOALS),distclean) |
26540
362f8c285877
Restore line mistakenly commented out in the last commit.
diego
parents:
26539
diff
changeset
|
1145 -include $(DEPS) |
27411
c38f90ae922a
Skip dependency generation if we just run distclean or if skipping
diego
parents:
27404
diff
changeset
|
1146 endif |
26490
17650f2caef1
Explicitly include dependency information in top-level Makefile.
diego
parents:
26489
diff
changeset
|
1147 |
27098
d026baa6a86a
Do not unconditionally recurse into FFmpeg subdirectories. Instead, just
diego
parents:
27080
diff
changeset
|
1148 .PHONY: all doxygen *install* *tools drivers dhahelper* |
26585
bb7a4686d158
Add new tests target to build all test programs and remove them on distclean.
diego
parents:
26584
diff
changeset
|
1149 .PHONY: checkheaders *clean dep depend tests |