Files
ffmpeg/libavutil/Makefile
T

184 lines
12 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 \
2012-03-23 17:45:48 -04:00
audio_fifo.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 \
blowfish.h \
2012-02-01 20:37:50 +01:00
bprint.h \
2010-07-10 22:22:07 +00:00
bswap.h \
buffer.h \
channel_layout.h \
common.h \
cpu.h \
crc.h \
downmix_info.h \
error.h \
eval.h \
fifo.h \
file.h \
2012-10-17 11:51:01 +02:00
frame.h \
hmac.h \
2011-02-07 14:37:08 +01:00
imgutils.h \
2012-01-29 20:09:22 +00:00
intfloat.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 \
macros.h \
mathematics.h \
md5.h \
mem.h \
2013-05-09 14:34:46 +02:00
murmur3.h \
2011-05-22 12:45:00 +02:00
dict.h \
2012-10-08 08:10:23 +02:00
old_pix_fmts.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 \
replaygain.h \
rational.h \
2013-06-15 14:04:19 -03:00
ripemd.h \
2011-02-07 14:37:08 +01:00
samplefmt.h \
2011-04-07 10:19:23 -03:00
sha.h \
2013-05-30 04:56:29 -03:00
sha512.h \
stereo3d.h \
2012-06-20 01:24:39 +01:00
time.h \
2012-01-16 11:20:46 +01:00
timecode.h \
timestamp.h \
2012-07-05 08:21:49 +02:00
version.h \
2012-07-03 15:53:16 +02:00
xtea.h \
HEADERS-$(CONFIG_LZO) += lzo.h
HEADERS-$(CONFIG_OPENCL) += opencl.h
ARCH_HEADERS = bswap.h \
intmath.h \
intreadwrite.h \
timer.h \
BUILT_HEADERS = avconfig.h \
ffversion.h
2010-01-19 04:40:16 +00:00
2008-10-26 15:21:45 +00:00
OBJS = adler32.o \
aes.o \
2012-12-02 14:34:50 -08:00
atomic.o \
2012-03-23 17:45:48 -04:00
audio_fifo.o \
avstring.o \
2008-10-26 15:21:45 +00:00
base64.o \
blowfish.o \
2012-02-01 20:37:50 +01:00
bprint.o \
buffer.o \
channel_layout.o \
cpu.o \
2008-10-26 15:21:45 +00:00
crc.o \
des.o \
downmix_info.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 \
file_open.o \
2012-05-21 12:58:41 -04:00
float_dsp.o \
2014-04-01 16:31:07 +02:00
fixed_dsp.o \
2012-10-17 11:51:01 +02:00
frame.o \
2013-05-09 18:10:47 +02:00
hash.o \
hmac.o \
2011-02-07 14:37:08 +01:00
imgutils.o \
2008-10-26 15:21:45 +00:00
intfloat_readwrite.o \
intmath.o \
2008-10-26 15:21:45 +00:00
lfg.o \
lls1.o \
2013-11-15 22:35:46 +01:00
lls2.o \
2008-10-26 15:21:45 +00:00
log.o \
log2_tab.o \
2008-10-26 15:21:45 +00:00
mathematics.o \
md5.o \
mem.o \
2013-05-09 14:34:46 +02:00
murmur3.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 \
2013-06-15 14:04:19 -03:00
ripemd.o \
2011-02-07 14:37:08 +01:00
samplefmt.o \
sha.o \
2013-05-30 04:56:29 -03:00
sha512.o \
stereo3d.o \
2012-06-20 01:24:39 +01:00
time.o \
2012-01-16 11:20:46 +01:00
timecode.o \
2008-10-26 15:21:45 +00:00
tree.o \
utils.o \
2012-09-22 09:56:33 +02:00
xga_font_data.o \
2012-07-03 15:53:16 +02:00
xtea.o \
OBJS-$(CONFIG_LZO) += lzo.o
2013-04-25 19:28:40 +08:00
OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
2012-10-14 17:56:00 +01:00
OBJS += $(COMPAT_OBJS:%=../compat/%)
# Windows resource file
SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o
SKIPHEADERS = old_pix_fmts.h
SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
2013-03-27 19:26:19 +01:00
SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
SKIPHEADERS-$(CONFIG_OPENCL) += opencl.h
TESTPROGS = adler32 \
aes \
2012-12-02 14:34:50 -08:00
atomic \
avstring \
base64 \
blowfish \
2012-05-07 22:42:41 +02:00
bprint \
cpu \
crc \
des \
error \
eval \
2012-05-07 22:42:41 +02:00
file \
fifo \
float_dsp \
2013-01-15 13:05:12 +02:00
hmac \
lfg \
lls1 \
2013-11-15 22:35:46 +01:00
lls2 \
2014-04-03 22:38:30 +02:00
log \
md5 \
2013-05-09 14:34:46 +02:00
murmur3 \
opt \
2012-05-07 22:42:41 +02:00
pca \
parseutils \
2012-05-07 22:42:41 +02:00
random_seed \
rational \
2013-06-15 14:04:19 -03:00
ripemd \
sha \
2013-05-30 04:56:29 -03:00
sha512 \
tree \
utf8 \
2012-07-03 15:53:16 +02:00
xtea \
2012-05-07 22:42:41 +02:00
TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
2008-01-27 22:39:30 +00:00
2013-05-16 20:10:11 +02:00
TOOLS = crypto_bench ffhash ffeval ffescape
tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),)
tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),)
2012-01-15 23:05:07 +01:00
$(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2