summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/Makefile.am
blob: e5a036a2fb554219e08b73c98e1446d7cb1d4b57 (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
82
83
84
85
86
87
88
89
90
include $(top_srcdir)/misc/Makefile.common

SUBDIRS = armv4l i386 mlib alpha libpostproc

## we include ppc/* files since auto* doesn't dive into.
## we also include imgresample.c motion_est.c which are unused
EXTRA_DIST = fdctref.c motion_est_template.c svq3.c wmv2.c \
	ppc/dsputil_ppc.c ppc/libavcodec_ppc_dummy.c ppc/mpegvideo_altivec.c \
	ppc/dsputil_altivec.c ppc/fft_altivec.c ppc/Makefile.am \
	ppc/mpegvideo_ppc.c ppc/dsputil_altivec.h  ppc/idct_altivec.c \
	imgresample.c motion_est.c

AM_CFLAGS = $(LIBFFMPEG_CFLAGS)
ASFLAGS =

noinst_LTLIBRARIES = libavcodec.la

libavcodec_la_SOURCES = \
	4xm.c \
	common.c \
	cyuv.c \
	dsputil.c \
	dv.c \
	error_resilience.c \
	eval.c \
	fft.c \
	golomb.c \
	h263.c \
	h263dec.c \
	h264.c \
	huffyuv.c \
	imgconvert.c \
	indeo3.c \
	jfdctfst.c \
	jfdctint.c \
	jrevdct.c \
	mdct.c \
	mace.c \
	mem.c \
	mjpeg.c \
	mpeg12.c \
	mpegaudiodec.c \
	mpegvideo.c \
	msmpeg4.c \
	opts.c \
	ra144.c \
	ra288.c \
	ratecontrol.c \
	rv10.c \
	simple_idct.c \
	svq1.c \
	utils.c \
	vp3.c \
	wmadec.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 \
	fastmemcpy.h \
	golomb.h \
	imgconvert_template.h \
	indeo3data.h \
	h263data.h \
	h264data.h \
	mangle.h \
	mpeg4data.h \
	mpeg12data.h \
	mpegaudio.h \
	mpegaudiodectab.h \
	mpegaudiotab.h \
	mpegvideo.h \
	msmpeg4data.h \
	os_support.h \
	simple_idct.h \
	svq1_cb.h \
	svq1_vlc.h \
	vp3data.h \
	wmadata.h

.s.lo:
	$(ASCOMPILE) -o $@ `test -f $< || echo '$(srcdir)/'`$<