1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-29 12:54:10 +02:00
Files
FFmpeg/libavutil/Makefile
T

90 lines
5.3 KiB
Makefile
Raw Normal View History

include $(SUBDIR)../config.mak
NAME = avutil
HEADERS = adler32.h \
2011-04-07 10:19:23 -03:00
aes.h \
attributes.h \
2011-02-07 14:37:08 +01:00
audioconvert.h \
2010-10-01 13:55:13 +00:00
avassert.h \
avstring.h \
avutil.h \
base64.h \
2010-07-10 22:22:07 +00:00
bswap.h \
common.h \
cpu.h \
crc.h \
error.h \
eval.h \
fifo.h \
file.h \
2011-02-07 14:37:08 +01:00
imgutils.h \
intfloat_readwrite.h \
2010-07-10 22:22:07 +00:00
intreadwrite.h \
2010-07-02 12:12:06 +00:00
lfg.h \
log.h \
lzo.h \
mathematics.h \
md5.h \
mem.h \
2011-05-22 12:45:00 +02:00
dict.h \
2010-10-08 23:42:25 +00:00
opt.h \
2011-02-07 14:37:08 +01:00
parseutils.h \
2009-11-24 23:33:41 +00:00
pixdesc.h \
pixfmt.h \
random_seed.h \
rational.h \
2011-02-07 14:37:08 +01:00
samplefmt.h \
2011-04-07 10:19:23 -03:00
sha.h \
2010-01-19 04:40:16 +00:00
BUILT_HEADERS = avconfig.h
2008-10-26 15:21:45 +00:00
OBJS = adler32.o \
aes.o \
2011-02-07 14:37:08 +01:00
audioconvert.o \
avstring.o \
2008-10-26 15:21:45 +00:00
base64.o \
cpu.o \
2008-10-26 15:21:45 +00:00
crc.o \
des.o \
2010-03-25 22:46:35 +00:00
error.o \
eval.o \
2008-10-26 15:21:45 +00:00
fifo.o \
file.o \
2011-02-07 14:37:08 +01:00
imgutils.o \
2008-10-26 15:21:45 +00:00
intfloat_readwrite.o \
inverse.o \
2008-10-26 15:21:45 +00:00
lfg.o \
lls.o \
log.o \
lzo.o \
mathematics.o \
md5.o \
mem.o \
2011-05-22 12:45:00 +02:00
dict.o \
2010-09-26 14:25:22 +00:00
opt.o \
2011-02-07 14:37:08 +01:00
parseutils.o \
2009-11-24 23:33:41 +00:00
pixdesc.o \
random_seed.o \
2008-10-26 15:21:45 +00:00
rational.o \
rc4.o \
2011-02-07 14:37:08 +01:00
samplefmt.o \
sha.o \
2008-10-26 15:21:45 +00:00
tree.o \
utils.o \
2010-09-09 18:51:45 +00:00
OBJS-$(ARCH_ARM) += arm/cpu.o
OBJS-$(ARCH_PPC) += ppc/cpu.o
OBJS-$(ARCH_X86) += x86/cpu.o
2011-08-26 23:18:54 +02:00
TESTPROGS = adler32 aes avstring base64 cpu crc des eval file fifo lfg lls \
2011-07-09 02:06:40 +02:00
md5 opt pca parseutils rational sha tree
TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
2008-01-27 22:39:30 +00:00
DIRS = arm bfin sh4 x86
ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h
$(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2