blob: 67fe1eec130bece1b61d7bb8edea2ccc97e1f224 (
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_CFLAGS = $(LIBFFMPEG_CFLAGS)
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
|