annotate Makefile @ 1074:d90c350454da libavcodec

* using $(MAKE)
author kabi
date Tue, 18 Feb 2003 19:10:57 +0000
parents 0a48dd404167
children 0980ae063f4e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
1 #
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
2 # libavcodec Makefile
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
3 # (c) 2000, 2001, 2002 Fabrice Bellard
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
4 #
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
5 include ../config.mak
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
6
395
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
7 VPATH=$(SRC_PATH)/libavcodec
80518daaab05 added VPATH support for multiple dir compilation
glantau
parents: 356
diff changeset
8
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
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
986e461dc072 Initial revision
glantau
parents:
diff changeset
11 LDFLAGS= -g
986e461dc072 Initial revision
glantau
parents:
diff changeset
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
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
14 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
23
1e131bc21101 added MJPEG decoder, renamed mjpegenc.c to mjpeg.c
glantau
parents: 22
diff changeset
15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
1042
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
16 motion_est.o imgconvert.o imgresample.o \
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
17 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
784
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
18 ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \
1060
e67433f96ae3 * opts compilation
kabi
parents: 1054
diff changeset
19 fft.o mdct.o mace.o huffyuv.o cyuv.o opts.o
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
20 ASM_OBJS=
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
21
1042
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
22 # codecs which are patented in some non free countries like the us
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
23 ifeq ($(CONFIG_RISKY),yes)
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
24 OBJS+= h263.o msmpeg4.o h263dec.o svq1.o rv10.o wmadec.o
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
25 endif
a78f6f72d54e --disable-risky support
michaelni
parents: 1033
diff changeset
26
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
27 # 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
28 ifeq ($(CONFIG_AC3),yes)
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
29 OBJS+= a52dec.o
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
30
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
31 # using builtin liba52 or runtime linked liba52.so.0
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
32 ifneq ($(CONFIG_A52BIN),yes)
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
33 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
34 liba52/imdct.o liba52/parse.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
35 endif
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
36 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
37
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
38 ifeq ($(CONFIG_PP),yes)
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
39 ifeq ($(SHARED_PP),yes)
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
40 EXTRALIBS += -lpostproc
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
41 else
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
42 # LIBS += libpostproc/libpostproc.a ... should be fixed
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
43 OBJS += libpostproc/postprocess.o
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
44 endif
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
45 endif
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
46
258
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
47 ifeq ($(CONFIG_MP3LAME),yes)
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
48 OBJS += mp3lameaudio.o
348
ae9e9af0b627 * by Thomas Sailer:
kabi
parents: 343
diff changeset
49 EXTRALIBS += -lmp3lame
258
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
50 endif
9c975237ec64 - Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents: 252
diff changeset
51
636
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
52 ifeq ($(CONFIG_VORBIS),yes)
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
53 OBJS += oggvorbis.o
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
54 EXTRALIBS += -lvorbis -lvorbisenc
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
55 endif
57b9a37546a0 oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents: 633
diff changeset
56
252
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
57 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
58 CFLAGS+=-p
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
59 LDFLAGS+=-p
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
60 endif
ddb1a0e94cf4 - Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents: 214
diff changeset
61
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
62 # i386 mmx specific stuff
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
63 ifeq ($(TARGET_MMX),yes)
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
64 OBJS += i386/fdct_mmx.o i386/cputest.o \
32
a524484f9adf added idct mmx
glantau
parents: 23
diff changeset
65 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
66 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
67 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
68 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
69 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
70 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
71 endif
986e461dc072 Initial revision
glantau
parents:
diff changeset
72
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
73 # armv4l specific stuff
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
74 ifeq ($(TARGET_ARCH_ARMV4L),yes)
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
75 ASM_OBJS += armv4l/jrevdct_arm.o
730
b24ea84b23e2 trying to fix the non-x86 IDCTs (untested)
michaelni
parents: 727
diff changeset
76 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
77 endif
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
78
88
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
79 # sun mediaLib specific stuff
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
80 # currently only works when libavcodec is used in mplayer
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
81 ifeq ($(HAVE_MLIB),yes)
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
82 OBJS += mlib/dsputil_mlib.o
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
83 CFLAGS += $(MLIB_INC)
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
84 endif
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
85
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
86 # alpha specific stuff
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
87 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
88 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
89 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
90 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
91 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
92 endif
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
93
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
94 ifeq ($(TARGET_ARCH_POWERPC),yes)
828
ace3ccd18dd2 Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents: 827
diff changeset
95 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
96 endif
0012f75c92bb altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 636
diff changeset
97
689
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
98 ifeq ($(TARGET_MMI),yes)
721
71f669e9f633 ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 705
diff changeset
99 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
100 endif
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
101
638
0012f75c92bb altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents: 636
diff changeset
102 ifeq ($(TARGET_ALTIVEC),yes)
1033
b4172ff70d27 Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents: 1027
diff changeset
103 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
104 CFLAGS += -faltivec
1033
b4172ff70d27 Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents: 1027
diff changeset
105 else
b4172ff70d27 Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents: 1027
diff changeset
106 CFLAGS += -maltivec -mabi=altivec
b4172ff70d27 Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents: 1027
diff changeset
107 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
108 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
109 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
110 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
111
509
cab79946302f Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents: 489
diff changeset
112 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
113 OBJS := $(OBJS) $(ASM_OBJS)
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
114
994
7701ff462e3a os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 979
diff changeset
115 LIB= $(LIBPREF)avcodec$(LIBSUF)
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
116 ifeq ($(BUILD_SHARED),yes)
994
7701ff462e3a os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 979
diff changeset
117 SLIB= $(SLIBPREF)avcodec$(SLIBSUF)
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
118 endif
784
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
119 TESTS= imgresample-test dct-test motion-test fft-test
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
120
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
121 all: $(LIB) $(SLIB)
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
122
43
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
123 tests: apiexample cpuid_test $(TESTS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
124
1046
a717c451cf1b dependencies are only build with make depend
bellard
parents: 1042
diff changeset
125 $(LIB): $(OBJS)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
126 rm -f $@
640
d2f47c6c6b41 ar -s -> ranlib
michaelni
parents: 638
diff changeset
127 $(AR) rc $@ $(OBJS)
994
7701ff462e3a os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 979
diff changeset
128 ifneq ($(CONFIG_OS2),yes)
640
d2f47c6c6b41 ar -s -> ranlib
michaelni
parents: 638
diff changeset
129 $(RANLIB) $@
994
7701ff462e3a os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents: 979
diff changeset
130 endif
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
131
1046
a717c451cf1b dependencies are only build with make depend
bellard
parents: 1042
diff changeset
132 $(SLIB): $(OBJS)
572
5a06c3552026 BeOS patches by "shatty" <shatty at myrealbox.com>
michaelni
parents: 571
diff changeset
133 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS)
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
134
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
135 dsputil.o: dsputil.c dsputil.h
986e461dc072 Initial revision
glantau
parents:
diff changeset
136
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
137 libpostproc/libpostproc.a:
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
138 $(MAKE) -C libpostproc
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1060
diff changeset
139
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
140 %.o: %.c
986e461dc072 Initial revision
glantau
parents:
diff changeset
141 $(CC) $(CFLAGS) -c -o $@ $<
986e461dc072 Initial revision
glantau
parents:
diff changeset
142
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
143 %.o: %.S
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
144 $(CC) $(CFLAGS) -c -o $@ $<
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
145
683
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
146 # 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
147 # -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
148 # cases.
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
149 ifeq ($(TARGET_ARCH_ALPHA),yes)
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
150 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
151 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
152 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
153 echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
154 $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
155 endif
aad2dedb8b6a * Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents: 645
diff changeset
156
1046
a717c451cf1b dependencies are only build with make depend
bellard
parents: 1042
diff changeset
157 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
158 $(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
159
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
160 dep: depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
161
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
162 clean:
1005
c331a07c0be2 AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents: 995
diff changeset
163 rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
62
4bfc845cdfea arm optimizations
glantau
parents: 43
diff changeset
164 armv4l/*.o armv4l/*~ \
88
06f63b58d2a8 mlib merge
glantau
parents: 81
diff changeset
165 mlib/*.o mlib/*~ \
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 174
diff changeset
166 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
167 ppc/*.o ppc/*~ \
689
efcbfbd18864 ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents: 683
diff changeset
168 ps2/*.o ps2/*~ \
338
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
169 liba52/*.o liba52/*~ \
1a38b3b4ea28 * using liba52
kabi
parents: 329
diff changeset
170 apiexample $(TESTS)
1074
d90c350454da * using $(MAKE)
kabi
parents: 1071
diff changeset
171 $(MAKE) -C libpostproc clean
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
172
484
f8bbc8976247 in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents: 429
diff changeset
173 distclean: clean
2
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
174 rm -f Makefile.bak .depend
2e2c46c87460 fixed config for direct mplayer build compatibility
glantau
parents: 0
diff changeset
175
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
176 # api example program
986e461dc072 Initial revision
glantau
parents:
diff changeset
177 apiexample: apiexample.c $(LIB)
645
f53e17dec13f apiexample needs EXTRALIBS
michaelni
parents: 644
diff changeset
178 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
179
43
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
180 # cpuid test
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
181 cpuid_test: i386/cputest.c
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
182 $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
ab64a3fc62bf Portability and testing issues
nickols_k
parents: 32
diff changeset
183
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
184 # testing progs
986e461dc072 Initial revision
glantau
parents:
diff changeset
185
986e461dc072 Initial revision
glantau
parents:
diff changeset
186 imgresample-test: imgresample.c
644
641708b5c33c fixing tests
michaelni
parents: 640
diff changeset
187 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
188
979
979f3cbd08a2 tests link all libavcodec
bellard
parents: 975
diff changeset
189 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
190 $(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
191
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
192 motion-test: motion_test.o $(LIB)
644
641708b5c33c fixing tests
michaelni
parents: 640
diff changeset
193 $(CC) -o $@ $^ -lm
74
d7603c46c52f suppressed nasm stuff
glantau
parents: 62
diff changeset
194
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
195 fft-test: fft-test.o $(LIB)
784
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
196 $(CC) -o $@ $^ -lm
32636728f24b added new fft/mdct code - added fft-test program
bellard
parents: 745
diff changeset
197
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
198 install: all
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
199 ifeq ($(BUILD_SHARED),yes)
603
442dede8795b patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents: 586
diff changeset
200 install -d $(prefix)/lib
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
201 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
202 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
203 ldconfig || true
429
718a22dc121f license/copyright change
glantau
parents: 410
diff changeset
204 mkdir -p $(prefix)/include/ffmpeg
727
c816782e3161 Fix for source dir != build dir. Patch provided by Mns Rullgrd.
mellum
parents: 724
diff changeset
205 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
206 install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h
136
669955525b67 Shared objects support
nickols_k
parents: 92
diff changeset
207 endif
489
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
208
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
209 installlib: all
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
210 install -m 644 $(LIB) $(prefix)/lib
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
211 mkdir -p $(prefix)/include/ffmpeg
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
212 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
213 $(prefix)/include/ffmpeg
b9fcdf9f4420 added installlib target to install static libraries and includes
bellard
parents: 484
diff changeset
214
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
215 #
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
216 # 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
217 #
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
218 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
219 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
220 endif