1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-21 16:47:28 +02:00
Files
FFmpeg/libswscale/Makefile
T

23 lines
608 B
Makefile
Raw Normal View History

2008-04-07 21:16:50 +00:00
include $(SUBDIR)../config.mak
2001-10-24 07:34:41 +00:00
NAME = swscale
FFLIBS = avutil
2006-10-23 14:03:49 +00:00
HEADERS = swscale.h
OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o
2007-01-25 00:35:29 +00:00
2009-03-27 22:56:56 +00:00
OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \
bfin/swscale_bfin.o \
bfin/yuv2rgb_bfin.o
2009-03-26 01:30:10 +00:00
OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o
OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o
OBJS-$(HAVE_MMX) += x86/yuv2rgb_mmx.o
2009-03-26 01:30:10 +00:00
OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o
TESTPROGS = colorspace swscale
2009-03-26 01:30:10 +00:00
DIRS = bfin mlib ppc sparc x86
2008-04-07 21:16:50 +00:00
include $(SUBDIR)../subdir.mak