]> git.sesse.net Git - ffmpeg/blob - libavcodec/Makefile
- Now ffmpeg handles MPEG-2 streams with pull down, it gets the real frame
[ffmpeg] / libavcodec / Makefile
1 include ../config.mak
2
3 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I. -I..
4 LDFLAGS= -g
5
6 OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \
7       mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
8       motion_est.o imgconvert.o imgresample.o msmpeg4.o \
9       mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \
10       ratecontrol.o
11 ASM_OBJS=
12
13 # currently using liba52 for ac3 decoding
14 ifeq ($(CONFIG_AC3),yes)
15 OBJS+= a52dec.o
16 endif
17
18 # using builtin liba52 or runtime linked liba52.so.0
19 ifeq ($(CONFIG_A52BIN),no)
20 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
21         liba52/imdct.o  liba52/parse.o
22 endif
23
24 ifeq ($(CONFIG_MP3LAME),yes)
25 OBJS += mp3lameaudio.o
26 EXTRALIBS += -lmp3lame
27 endif
28
29 ifeq ($(TARGET_GPROF),yes)
30 CFLAGS+=-p
31 LDFLAGS+=-p
32 endif
33
34 # i386 mmx specific stuff
35 ifeq ($(TARGET_MMX),yes)
36 OBJS += i386/fdct_mmx.o i386/cputest.o \
37         i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
38         i386/idct_mmx.o i386/motion_est_mmx.o \
39         i386/simple_idct_mmx.o
40 endif
41
42 # armv4l specific stuff
43 ifeq ($(TARGET_ARCH_ARMV4L),yes)
44 ASM_OBJS += armv4l/jrevdct_arm.o
45 OBJS += armv4l/dsputil_arm.o
46 endif
47
48 # sun mediaLib specific stuff
49 # currently only works when libavcodec is used in mplayer
50 ifeq ($(HAVE_MLIB),yes)
51 OBJS += mlib/dsputil_mlib.o
52 CFLAGS += $(MLIB_INC)
53 endif
54
55 # alpha specific stuff
56 ifeq ($(TARGET_ARCH_ALPHA),yes)
57 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o
58 CFLAGS += -Wa,-mpca56
59 endif
60
61 SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
62
63 LIB= libavcodec.a
64 ifeq ($(BUILD_SHARED),yes)
65 SLIB= libffmpeg-$(VERSION).so
66 endif
67 TESTS= imgresample-test dct-test motion-test
68
69 all: $(LIB) $(SLIB)
70 tests: apiexample cpuid_test $(TESTS)
71
72 $(LIB): $(OBJS) $(ASM_OBJS)
73         rm -f $@
74         $(AR) rc $@ $(OBJS) $(ASM_OBJS)
75
76 $(SLIB): $(OBJS) $(ASM_OBJS)
77         rm -f $@
78         $(CC) -shared -o $@ $(OBJS) $(ASM_OBJS) $(EXTRALIBS)
79         ln -sf $@ libffmpeg.so
80 dsputil.o: dsputil.c dsputil.h
81
82 %.o: %.c
83         $(CC) $(CFLAGS) -c -o $@ $< 
84
85 %.o: %.S
86         $(CC) $(CFLAGS) -c -o $@ $<
87
88 # depend only used by mplayer now
89 dep:    depend
90
91 depend:
92         $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
93
94 clean: 
95         rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
96            armv4l/*.o armv4l/*~ \
97            mlib/*.o mlib/*~ \
98            alpha/*.o alpha/*~ \
99            liba52/*.o liba52/*~ \
100            apiexample $(TESTS)
101
102 distclean: clean
103         rm -f Makefile.bak .depend
104
105 # api example program
106 apiexample: apiexample.c $(LIB)
107         $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm
108
109 # cpuid test
110 cpuid_test: i386/cputest.c
111         $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
112
113 # testing progs
114
115 imgresample-test: imgresample.c
116         $(CC) $(CFLAGS) -DTEST -o $@ $^ 
117
118 dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o \
119           fdctref.o jrevdct.o i386/idct_mmx.o
120         $(CC) -o $@ $^
121
122 motion-test: motion_test.o $(LIB)
123         $(CC) -o $@ $^
124
125 install: all
126 #       install -m 644 $(LIB) $(prefix)/lib
127 ifeq ($(BUILD_SHARED),yes)
128         install -s -m 755 $(SLIB) $(prefix)/lib
129         ln -sf $(prefix)/lib/$(SLIB) $(prefix)/lib/libffmpeg.so
130         ldconfig
131         mkdir -p $(prefix)/include/libffmpeg
132         install -m 644 avcodec.h $(prefix)/include/libffmpeg/avcodec.h
133         install -m 644 common.h $(prefix)/include/libffmpeg/common.h
134 endif
135 #
136 # include dependency files if they exist
137 #
138 ifneq ($(wildcard .depend),)
139 include .depend
140 endif