mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
9eb88fdeba
Originally committed as revision 7031 to svn://svn.ffmpeg.org/ffmpeg/trunk
30 lines
503 B
Makefile
30 lines
503 B
Makefile
#
|
|
# libavutil Makefile
|
|
#
|
|
include ../config.mak
|
|
|
|
CFLAGS+=-DBUILD_AVUTIL
|
|
|
|
OBJS= mathematics.o \
|
|
rational.o \
|
|
intfloat_readwrite.o \
|
|
crc.o \
|
|
md5.o \
|
|
lls.o \
|
|
adler32.o \
|
|
log.o \
|
|
mem.o \
|
|
fifo.o \
|
|
tree.o \
|
|
|
|
HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
|
|
intfloat_readwrite.h md5.h adler32.h log.h fifo.h
|
|
|
|
NAME=avutil
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
LIBVERSION=$(LAVUVERSION)
|
|
LIBMAJOR=$(LAVUMAJOR)
|
|
endif
|
|
|
|
include ../common.mak
|