Mercurial > libavcodec.hg
annotate Makefile @ 1381:f07e17427140 libavcodec
initial XvMC support
author | iive |
---|---|
date | Sat, 26 Jul 2003 01:28:49 +0000 |
parents | f9b088451fb3 |
children | ed8a6c3bc4db |
rev | line source |
---|---|
395 | 1 # |
2 # libavcodec Makefile | |
429 | 3 # (c) 2000, 2001, 2002 Fabrice Bellard |
395 | 4 # |
2 | 5 include ../config.mak |
6 | |
395 | 7 VPATH=$(SRC_PATH)/libavcodec |
8 | |
429 | 9 # NOTE: -I.. is needed to include config.h |
571
0a9259126188
largefile support patch by Roy Sigurd Karlsbakk <roy at karlsbakk.net>
michaelni
parents:
539
diff
changeset
|
10 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
0 | 11 LDFLAGS= -g |
12 | |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
13 OBJS= common.o utils.o mem.o allcodecs.o \ |
1042 | 14 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
23 | 15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
1042 | 16 motion_est.o imgconvert.o imgresample.o \ |
1381 | 17 mpeg12.o xvmcvideo.o mpegaudiodec.o pcm.o simple_idct.o \ |
784 | 18 ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \ |
1224 | 19 fft.o mdct.o mace.o huffyuv.o cyuv.o opts.o raw.o h264.o golomb.o \ |
1374 | 20 vp3.o asv1.o 4xm.o cabac.o ffv1.o ra144.o ra288.o vcr1.o |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
21 |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
22 ifeq ($(AMR_NB),yes) |
1297 | 23 ifeq ($(AMR_NB_FIXED),yes) |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
24 OBJS+= amr.o |
1297 | 25 AMREXTRALIBS+= amr/*.o |
26 AMRLIBS=amrlibs | |
27 CLEANAMR=cleanamr | |
28 else | |
29 OBJS+= amr.o amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o | |
30 CLEANAMR=cleanamrfloat | |
31 endif | |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
32 endif |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
33 |
2 | 34 ASM_OBJS= |
0 | 35 |
1042 | 36 # codecs which are patented in some non free countries like the us |
37 ifeq ($(CONFIG_RISKY),yes) | |
1190 | 38 OBJS+= h263.o msmpeg4.o h263dec.o svq1.o rv10.o wmadec.o indeo3.o |
1042 | 39 endif |
40 | |
338 | 41 # currently using liba52 for ac3 decoding |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
42 ifeq ($(CONFIG_AC3),yes) |
338 | 43 OBJS+= a52dec.o |
44 | |
45 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 46 ifneq ($(CONFIG_A52BIN),yes) |
338 | 47 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
1194 | 48 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
49 endif |
429 | 50 endif |
0 | 51 |
1245 | 52 ifeq ($(CONFIG_FAAD),yes) |
53 OBJS+= faad.o | |
1247 | 54 ifeq ($(CONFIG_FAADBIN),yes) |
55 # no libs needed | |
56 else | |
57 EXTRALIBS += -lfaad | |
58 endif | |
1245 | 59 endif |
60 | |
1069 | 61 ifeq ($(CONFIG_PP),yes) |
62 ifeq ($(SHARED_PP),yes) | |
63 EXTRALIBS += -lpostproc | |
64 else | |
65 # LIBS += libpostproc/libpostproc.a ... should be fixed | |
66 OBJS += libpostproc/postprocess.o | |
67 endif | |
68 endif | |
69 | |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
70 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
71 OBJS += mp3lameaudio.o |
348 | 72 EXTRALIBS += -lmp3lame |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
73 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
74 |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
75 ifeq ($(CONFIG_VORBIS),yes) |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
76 OBJS += oggvorbis.o |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
77 EXTRALIBS += -lvorbis -lvorbisenc |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
78 endif |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
79 |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
80 ifeq ($(TARGET_GPROF),yes) |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
81 CFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
82 LDFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
83 endif |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
84 |
0 | 85 # i386 mmx specific stuff |
2 | 86 ifeq ($(TARGET_MMX),yes) |
74 | 87 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 88 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 89 i386/idct_mmx.o i386/motion_est_mmx.o \ |
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
90 i386/simple_idct_mmx.o i386/fft_sse.o |
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
91 ifdef TARGET_BUILTIN_VECTOR |
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
92 i386/fft_sse.o: CFLAGS+= -msse |
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
93 endif |
0 | 94 endif |
95 | |
62 | 96 # armv4l specific stuff |
97 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
1347
cca26199ab17
Optimized simple idct for arm by Frederic 'dilb' Boulay <dilb@handhelds.org>. Currently licensed under the GPLv2, but the author allowed to license it under the LGPL, feel free to change
al3x
parents:
1304
diff
changeset
|
98 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o |
730 | 99 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
62 | 100 endif |
101 | |
88 | 102 # sun mediaLib specific stuff |
103 # currently only works when libavcodec is used in mplayer | |
104 ifeq ($(HAVE_MLIB),yes) | |
105 OBJS += mlib/dsputil_mlib.o | |
106 CFLAGS += $(MLIB_INC) | |
107 endif | |
108 | |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
109 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
110 ifeq ($(TARGET_ARCH_ALPHA),yes) |
744
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents:
730
diff
changeset
|
111 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \ |
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents:
730
diff
changeset
|
112 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o |
705
107a56aa74f5
Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large win
mellum
parents:
689
diff
changeset
|
113 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
114 CFLAGS += -fforce-addr -freduce-all-givs |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
115 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
116 |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
117 ifeq ($(TARGET_ARCH_POWERPC),yes) |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
118 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
119 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
120 |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
121 ifeq ($(TARGET_MMI),yes) |
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
122 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
123 endif |
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
124 |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
125 ifeq ($(TARGET_ALTIVEC),yes) |
1033
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
126 ifeq ($(TARGET_OS),Darwin) |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
127 CFLAGS += -faltivec |
1033
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
128 else |
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
129 CFLAGS += -maltivec -mabi=altivec |
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1027
diff
changeset
|
130 endif |
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
973
diff
changeset
|
131 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ |
995
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
994
diff
changeset
|
132 ppc/fft_altivec.o ppc/gmc_altivec.o |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
133 endif |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
134 |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
135 ifeq ($(TARGET_ARCH_SH4),yes) |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
136 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
137 endif |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
138 |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
139 |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
140 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
429 | 141 OBJS := $(OBJS) $(ASM_OBJS) |
2 | 142 |
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
143 LIB= $(LIBPREF)avcodec$(LIBSUF) |
136 | 144 ifeq ($(BUILD_SHARED),yes) |
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
145 SLIB= $(SLIBPREF)avcodec$(SLIBSUF) |
136 | 146 endif |
784 | 147 TESTS= imgresample-test dct-test motion-test fft-test |
0 | 148 |
136 | 149 all: $(LIB) $(SLIB) |
429 | 150 |
1297 | 151 amrlibs: |
152 $(MAKE) -C amr spclib fipoplib | |
153 | |
43 | 154 tests: apiexample cpuid_test $(TESTS) |
0 | 155 |
1297 | 156 $(LIB): $(OBJS) $(AMRLIBS) |
0 | 157 rm -f $@ |
1297 | 158 $(AR) rc $@ $(OBJS) $(AMREXTRALIBS) |
640 | 159 $(RANLIB) $@ |
0 | 160 |
1046 | 161 $(SLIB): $(OBJS) |
1297 | 162 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) |
429 | 163 |
0 | 164 dsputil.o: dsputil.c dsputil.h |
165 | |
1069 | 166 libpostproc/libpostproc.a: |
167 $(MAKE) -C libpostproc | |
168 | |
0 | 169 %.o: %.c |
170 $(CC) $(CFLAGS) -c -o $@ $< | |
171 | |
62 | 172 %.o: %.S |
173 $(CC) $(CFLAGS) -c -o $@ $< | |
174 | |
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
175 # motion_est_alpha uses the MVI extension, which is not available with |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
176 # -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
177 # cases. |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
178 ifeq ($(TARGET_ARCH_ALPHA),yes) |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
179 alpha/motion_est_alpha.o: alpha/motion_est_alpha.c |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
180 cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
181 case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
182 echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
183 $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $< |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
184 endif |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
185 |
1046 | 186 depend: $(SRCS) |
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
187 $(CC) -MM $(CFLAGS) $^ 1>.depend |
1010
3c110cba4b29
- removed nonsense *.d dependancy stuff, there was already a better 'make dep' support in it
arpi_esp
parents:
1005
diff
changeset
|
188 |
2 | 189 dep: depend |
190 | |
1297 | 191 clean: $(CLEANAMR) |
1005
c331a07c0be2
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
995
diff
changeset
|
192 rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
62 | 193 armv4l/*.o armv4l/*~ \ |
88 | 194 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
195 alpha/*.o alpha/*~ \ |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
196 ppc/*.o ppc/*~ \ |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
197 ps2/*.o ps2/*~ \ |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
198 sh4/*.o sh4/*~ \ |
338 | 199 liba52/*.o liba52/*~ \ |
200 apiexample $(TESTS) | |
1074 | 201 $(MAKE) -C libpostproc clean |
0 | 202 |
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
203 distclean: clean |
2 | 204 rm -f Makefile.bak .depend |
205 | |
1297 | 206 cleanamr: |
207 $(MAKE) -C amr clean | |
208 | |
209 cleanamrfloat: | |
210 rm -f amr_float/*.o | |
211 | |
0 | 212 # api example program |
213 apiexample: apiexample.c $(LIB) | |
645 | 214 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm |
0 | 215 |
43 | 216 # cpuid test |
217 cpuid_test: i386/cputest.c | |
218 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
219 | |
0 | 220 # testing progs |
221 | |
222 imgresample-test: imgresample.c | |
644 | 223 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
0 | 224 |
979 | 225 dct-test: dct-test.o fdctref.o $(LIB) |
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
226 $(CC) -o $@ $^ -lm |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
227 |
74 | 228 motion-test: motion_test.o $(LIB) |
644 | 229 $(CC) -o $@ $^ -lm |
74 | 230 |
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
231 fft-test: fft-test.o $(LIB) |
784 | 232 $(CC) -o $@ $^ -lm |
233 | |
136 | 234 install: all |
235 ifeq ($(BUILD_SHARED),yes) | |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
236 install -d $(prefix)/lib |
429 | 237 install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
238 ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so |
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
239 ldconfig || true |
429 | 240 mkdir -p $(prefix)/include/ffmpeg |
727
c816782e3161
Fix for source dir != build dir. Patch provided by Mns Rullgrd.
mellum
parents:
724
diff
changeset
|
241 install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h |
c816782e3161
Fix for source dir != build dir. Patch provided by Mns Rullgrd.
mellum
parents:
724
diff
changeset
|
242 install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h |
136 | 243 endif |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
244 |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
245 installlib: all |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
246 install -m 644 $(LIB) $(prefix)/lib |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
247 mkdir -p $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
248 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \ |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
249 $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
250 |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
251 # |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
252 # include dependency files if they exist |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
253 # |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
254 ifneq ($(wildcard .depend),) |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
255 include .depend |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
256 endif |