blob: 1edfaa10dc1acf3eef9a31370f324d1703a9b391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = $(LIBFFMPEG_CPPFLAGS)
ASFLAGS =
noinst_LTLIBRARIES = libavutil.la
libavutil_la_SOURCES = \
integer.c \
mathematics.c \
rational.c
libavutil_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = \
avutil.h \
bswap.h \
common.h \
integer.h \
intfloat_readwrite.h \
mathematics.h \
rational.h
|