OLD | NEW |
1 include $(SUBDIR)../config.mak | 1 include $(SUBDIR)../config.mak |
2 | 2 |
3 NAME = swscale | 3 NAME = swscale |
4 FFLIBS = avutil | 4 FFLIBS = avutil |
5 | 5 |
6 HEADERS = swscale.h | 6 HEADERS = swscale.h |
7 | 7 |
8 OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o | 8 OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o |
9 | 9 |
10 OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \ | 10 OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \ |
11 bfin/swscale_bfin.o \ | 11 bfin/swscale_bfin.o \ |
12 bfin/yuv2rgb_bfin.o | 12 bfin/yuv2rgb_bfin.o |
13 OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o | 13 OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o |
14 OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o | 14 OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o |
15 OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o | 15 OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o |
16 | 16 |
17 MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \ | 17 MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \ |
18 | 18 |
19 EXAMPLES = swscale | 19 TESTPROGS = colorspace swscale |
20 TESTPROGS = colorspace | |
21 | 20 |
22 DIRS = bfin mlib ppc sparc x86 | 21 DIRS = bfin mlib ppc sparc x86 |
23 | 22 |
24 include $(SUBDIR)../subdir.mak | 23 include $(SUBDIR)../subdir.mak |
OLD | NEW |