comparison Makefile @ 429:718a22dc121f libavcodec

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