blob: fca5a2d496a76ff8b6f30bffe3780e29dac34268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = $(LIBFFMPEG_CPPFLAGS)
AM_CFLAGS = -fno-strict-aliasing
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
|