Mercurial > libavcodec.hg
annotate Makefile @ 638:0012f75c92bb libavcodec
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
author | michaelni |
---|---|
date | Mon, 02 Sep 2002 08:48:12 +0000 |
parents | 57b9a37546a0 |
children | d2f47c6c6b41 |
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 \ |
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
623
diff
changeset
|
14 mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\ |
23 | 15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
0 | 16 motion_est.o imgconvert.o imgresample.o msmpeg4.o \ |
521 | 17 mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \ |
612 | 18 ratecontrol.o adpcm.o eval.o |
2 | 19 ASM_OBJS= |
0 | 20 |
338 | 21 # 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
|
22 ifeq ($(CONFIG_AC3),yes) |
338 | 23 OBJS+= a52dec.o |
24 | |
25 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 26 ifneq ($(CONFIG_A52BIN),yes) |
338 | 27 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
28 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
|
29 endif |
429 | 30 endif |
0 | 31 |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
32 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
33 OBJS += mp3lameaudio.o |
348 | 34 EXTRALIBS += -lmp3lame |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
35 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
36 |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
37 ifeq ($(CONFIG_VORBIS),yes) |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
38 OBJS += oggvorbis.o |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
39 EXTRALIBS += -lvorbis -lvorbisenc |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
40 endif |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
41 |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
42 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
|
43 CFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
44 LDFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
45 endif |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
46 |
0 | 47 # i386 mmx specific stuff |
2 | 48 ifeq ($(TARGET_MMX),yes) |
74 | 49 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 50 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 51 i386/idct_mmx.o i386/motion_est_mmx.o \ |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
138
diff
changeset
|
52 i386/simple_idct_mmx.o |
0 | 53 endif |
54 | |
62 | 55 # armv4l specific stuff |
56 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
57 ASM_OBJS += armv4l/jrevdct_arm.o | |
58 OBJS += armv4l/dsputil_arm.o | |
59 endif | |
60 | |
88 | 61 # sun mediaLib specific stuff |
62 # currently only works when libavcodec is used in mplayer | |
63 ifeq ($(HAVE_MLIB),yes) | |
64 OBJS += mlib/dsputil_mlib.o | |
65 CFLAGS += $(MLIB_INC) | |
66 endif | |
67 | |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
68 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
69 ifeq ($(TARGET_ARCH_ALPHA),yes) |
586 | 70 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o alpha/motion_est_alpha.o |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
71 ASM_OBJS += alpha/dsputil_alpha_asm.o |
539 | 72 CFLAGS += -Wa,-mpca56 -finline-limit=8000 -fforce-addr -freduce-all-givs |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
73 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
74 |
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
|
75 ifeq ($(TARGET_ARCH_POWERPC),yes) |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
76 OBJS += ppc/dsputil_ppc.o |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
77 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
78 |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
79 ifeq ($(TARGET_ALTIVEC),yes) |
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
|
80 CFLAGS += -faltivec |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
81 OBJS += ppc/dsputil_altivec.o |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
82 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
|
83 |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
84 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
429 | 85 OBJS := $(OBJS) $(ASM_OBJS) |
2 | 86 |
0 | 87 LIB= libavcodec.a |
136 | 88 ifeq ($(BUILD_SHARED),yes) |
429 | 89 SLIB= libavcodec.so |
136 | 90 endif |
74 | 91 TESTS= imgresample-test dct-test motion-test |
0 | 92 |
136 | 93 all: $(LIB) $(SLIB) |
429 | 94 |
43 | 95 tests: apiexample cpuid_test $(TESTS) |
0 | 96 |
429 | 97 $(LIB): $(OBJS) |
0 | 98 rm -f $@ |
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
99 $(AR) rcs $@ $(OBJS) |
0 | 100 |
429 | 101 $(SLIB): $(OBJS) |
572
5a06c3552026
BeOS patches by "shatty" <shatty at myrealbox.com>
michaelni
parents:
571
diff
changeset
|
102 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) |
429 | 103 |
0 | 104 dsputil.o: dsputil.c dsputil.h |
105 | |
106 %.o: %.c | |
107 $(CC) $(CFLAGS) -c -o $@ $< | |
108 | |
62 | 109 %.o: %.S |
110 $(CC) $(CFLAGS) -c -o $@ $< | |
111 | |
2 | 112 # depend only used by mplayer now |
113 dep: depend | |
114 | |
115 depend: | |
116 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
117 | |
0 | 118 clean: |
343 | 119 rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
62 | 120 armv4l/*.o armv4l/*~ \ |
88 | 121 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
122 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
|
123 ppc/*.o ppc/*~ \ |
338 | 124 liba52/*.o liba52/*~ \ |
125 apiexample $(TESTS) | |
0 | 126 |
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
127 distclean: clean |
2 | 128 rm -f Makefile.bak .depend |
129 | |
0 | 130 # api example program |
131 apiexample: apiexample.c $(LIB) | |
132 $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm | |
133 | |
43 | 134 # cpuid test |
135 cpuid_test: i386/cputest.c | |
136 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
137 | |
0 | 138 # testing progs |
139 | |
140 imgresample-test: imgresample.c | |
141 $(CC) $(CFLAGS) -DTEST -o $@ $^ | |
142 | |
633 | 143 dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\ |
144 fdctref.o jrevdct.o i386/idct_mmx.o simple_idct.o i386/simple_idct_mmx.o | |
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
145 $(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
|
146 |
74 | 147 motion-test: motion_test.o $(LIB) |
148 $(CC) -o $@ $^ | |
149 | |
136 | 150 install: all |
151 ifeq ($(BUILD_SHARED),yes) | |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
152 install -d $(prefix)/lib |
429 | 153 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
|
154 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
|
155 ldconfig || true |
429 | 156 mkdir -p $(prefix)/include/ffmpeg |
157 install -m 644 avcodec.h $(prefix)/include/ffmpeg/avcodec.h | |
158 install -m 644 common.h $(prefix)/include/ffmpeg/common.h | |
136 | 159 endif |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
160 |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
161 installlib: all |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
162 install -m 644 $(LIB) $(prefix)/lib |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
163 mkdir -p $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
164 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
|
165 $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
166 |
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
|
167 # |
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
|
168 # 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
|
169 # |
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
|
170 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
|
171 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
|
172 endif |