]> git.sesse.net Git - ffmpeg/blob - libavcodec/Makefile
huffyuv
[ffmpeg] / libavcodec / Makefile
1 #
2 # libavcodec Makefile
3 # (c) 2000, 2001, 2002 Fabrice Bellard
4 #
5 include ../config.mak
6
7 VPATH=$(SRC_PATH)/libavcodec
8
9 # NOTE: -I.. is needed to include config.h
10 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
11 LDFLAGS= -g
12
13 OBJS= common.o utils.o mem.o allcodecs.o \
14       mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\
15       mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
16       motion_est.o imgconvert.o imgresample.o msmpeg4.o \
17       mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \
18       ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \
19       wmadec.o fft.o mdct.o mace.o huffyuv.o
20 ASM_OBJS=
21
22 # currently using liba52 for ac3 decoding
23 ifeq ($(CONFIG_AC3),yes)
24 OBJS+= a52dec.o
25
26 # using builtin liba52 or runtime linked liba52.so.0
27 ifneq ($(CONFIG_A52BIN),yes)
28 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
29         liba52/imdct.o  liba52/parse.o
30 endif
31 endif
32
33 ifeq ($(CONFIG_MP3LAME),yes)
34 OBJS += mp3lameaudio.o
35 EXTRALIBS += -lmp3lame
36 endif
37
38 ifeq ($(CONFIG_VORBIS),yes)
39 OBJS += oggvorbis.o
40 EXTRALIBS += -lvorbis -lvorbisenc
41 endif
42
43 ifeq ($(TARGET_GPROF),yes)
44 CFLAGS+=-p
45 LDFLAGS+=-p
46 endif
47
48 # i386 mmx specific stuff
49 ifeq ($(TARGET_MMX),yes)
50 OBJS += i386/fdct_mmx.o i386/cputest.o \
51         i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
52         i386/idct_mmx.o i386/motion_est_mmx.o \
53         i386/simple_idct_mmx.o
54 endif
55
56 # armv4l specific stuff
57 ifeq ($(TARGET_ARCH_ARMV4L),yes)
58 ASM_OBJS += armv4l/jrevdct_arm.o
59 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
60 endif
61
62 # sun mediaLib specific stuff
63 # currently only works when libavcodec is used in mplayer
64 ifeq ($(HAVE_MLIB),yes)
65 OBJS += mlib/dsputil_mlib.o
66 CFLAGS += $(MLIB_INC)
67 endif
68
69 # alpha specific stuff
70 ifeq ($(TARGET_ARCH_ALPHA),yes)
71 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
72         alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
73 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
74 CFLAGS += -fforce-addr -freduce-all-givs
75 endif
76
77 ifeq ($(TARGET_ARCH_POWERPC),yes)
78 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
79 endif
80
81 ifeq ($(TARGET_MMI),yes)
82 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
83 endif
84
85 ifeq ($(TARGET_ALTIVEC),yes)
86 CFLAGS += -faltivec
87 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o
88 endif
89
90 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
91 OBJS := $(OBJS) $(ASM_OBJS)
92
93 LIB= libavcodec.a
94 ifeq ($(BUILD_SHARED),yes)
95 SLIB= libavcodec.so
96 endif
97 TESTS= imgresample-test dct-test motion-test fft-test
98
99 all: $(LIB) $(SLIB)
100
101 tests: apiexample cpuid_test $(TESTS)
102
103 $(LIB): $(OBJS)
104         rm -f $@
105         $(AR) rc $@ $(OBJS)
106         $(RANLIB) $@
107
108 $(SLIB): $(OBJS)
109         $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS)
110
111 dsputil.o: dsputil.c dsputil.h
112
113 # specific sse code
114 %_sse.o : %_sse.c
115         $(CC) $(CFLAGS) -msse -c -o $@ $< 
116
117 # specific 3dnow code
118 %_3dnow.o : %_3dnow.c
119         $(CC) $(CFLAGS) -m3dnow -c -o $@ $< 
120
121 %.o: %.c
122         $(CC) $(CFLAGS) -c -o $@ $< 
123
124 %.o: %.S
125         $(CC) $(CFLAGS) -c -o $@ $<
126
127 # motion_est_alpha uses the MVI extension, which is not available with
128 # -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those
129 # cases.
130 ifeq ($(TARGET_ARCH_ALPHA),yes)
131 alpha/motion_est_alpha.o: alpha/motion_est_alpha.c
132         cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \
133         case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \
134         echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\
135         $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<
136 endif
137
138 # depend only used by mplayer now
139 dep:    depend
140
141 depend:
142         $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
143
144 clean: 
145         rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
146            armv4l/*.o armv4l/*~ \
147            mlib/*.o mlib/*~ \
148            alpha/*.o alpha/*~ \
149            ppc/*.o ppc/*~ \
150            ps2/*.o ps2/*~ \
151            liba52/*.o liba52/*~ \
152            apiexample $(TESTS)
153
154 distclean: clean
155         rm -f Makefile.bak .depend
156
157 # api example program
158 apiexample: apiexample.c $(LIB)
159         $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm
160
161 # cpuid test
162 cpuid_test: i386/cputest.c
163         $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
164
165 # testing progs
166
167 imgresample-test: imgresample.c
168         $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
169
170 dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\
171           fdctref.o jrevdct.o i386/idct_mmx.o simple_idct.o i386/simple_idct_mmx.o
172         $(CC) -o $@ $^ -lm
173
174 motion-test: motion_test.o $(LIB)
175         $(CC) -o $@ $^ -lm
176
177 fft-test: fft-test.o fft.o mdct.o
178         $(CC) -o $@ $^ -lm
179
180 install: all
181 ifeq ($(BUILD_SHARED),yes)
182         install -d $(prefix)/lib
183         install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so
184         ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so
185         ldconfig || true
186         mkdir -p $(prefix)/include/ffmpeg
187         install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h
188         install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h
189 endif
190
191 installlib: all
192         install -m 644 $(LIB) $(prefix)/lib
193         mkdir -p $(prefix)/include/ffmpeg
194         install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \
195                 $(prefix)/include/ffmpeg
196
197 #
198 # include dependency files if they exist
199 #
200 ifneq ($(wildcard .depend),)
201 include .depend
202 endif