blob: 6010a81347b5c6d811edabdd48c65c133d4f2d5d (
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
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = $(LIBFFMPEG_CPPFLAGS) -I$(top_srcdir)/src/libffmpeg \
-I$(top_builddir)/src/libffmpeg
AM_CFLAGS = -fno-strict-aliasing
ASFLAGS =
noinst_LTLIBRARIES = libavutil.la
libavutil_la_SOURCES = \
adler32.c \
crc.c \
integer.c \
lls.c \
log.c \
mathematics.c \
md5.c \
mem.c \
rational.c
libavutil_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = \
adler32.h \
avutil.h \
bswap.h \
common.h \
crc.h \
integer.h \
internal.h \
intfloat_readwrite.h \
intreadwrite.h \
lls.h \
log.h \
mathematics.h \
md5.h \
rational.h \
x86_cpu.h
|