blob: a92987fe6b52828f0387970cc530a9bc41b4d861 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
##
## Process this file with automake to produce Makefile.in
##
SUBDIRS = armv4l i386 mlib alpha
EXTRA_DIST = fdctref.c imgresample.c
AM_CFLAGS = $(LIBFFMPEG_CFLAGS)
ASFLAGS =
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
noinst_LTLIBRARIES = libavcodec.la
libavcodec_la_SOURCES = \
common.c \
dsputil.c \
dv.c \
error_resilience.c \
eval.c \
fft.c \
h263.c \
h263dec.c \
imgconvert.c \
jfdctfst.c \
jfdctint.c \
jrevdct.c \
mdct.c \
mem.c \
mjpeg.c \
motion_est.c \
mpeg12.c \
mpegvideo.c \
msmpeg4.c \
ratecontrol.c \
rv10.c \
simple_idct.c \
svq1.c \
utils.c \
wmadec.c
#imgresample.c
libavcodec_la_LDFLAGS = \
$(top_builddir)/src/libffmpeg/libavcodec/armv4l/libavcodec_armv4l.la \
$(top_builddir)/src/libffmpeg/libavcodec/i386/libavcodec_mmx.la \
$(top_builddir)/src/libffmpeg/libavcodec/mlib/libavcodec_mlib.la \
-avoid-version -module
noinst_HEADERS = \
avcodec.h \
common.h \
dsputil.h \
dvdata.h \
h263data.h \
mangle.h \
mpeg4data.h \
mpeg12data.h \
mpegvideo.h \
msmpeg4data.h \
simple_idct.h \
svq1_cb.h \
wmadata.h
.s.lo:
$(ASCOMPILE) -o $@ `test -f $< || echo '$(srcdir)/'`$<
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBFFMPEG_CFLAGS)"
install-debug: debug
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|