comparison libswscale/Makefile @ 29028:f8db50af4035

Move yuv2rgb code to subdirs.
author ramiro
date Thu, 26 Mar 2009 01:30:10 +0000
parents 500adeff7ff4
children 15e1d6124a6b
comparison
equal deleted inserted replaced
29027:9c1508cdb122 29028:f8db50af4035
5 5
6 HEADERS = swscale.h 6 HEADERS = swscale.h
7 7
8 OBJS = rgb2rgb.o swscale.o swscale_avoption.o yuv2rgb.o 8 OBJS = rgb2rgb.o swscale.o swscale_avoption.o yuv2rgb.o
9 9
10 OBJS-$(ARCH_BFIN) += internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o 10 OBJS-$(ARCH_BFIN) += internal_bfin.o swscale_bfin.o bfin/yuv2rgb_bfin.o
11 OBJS-$(CONFIG_MLIB) += yuv2rgb_mlib.o 11 OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o
12 OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o 12 OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o
13 OBJS-$(HAVE_VIS) += yuv2rgb_vis.o 13 OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o
14
15 MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \
16
17 OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)
14 18
15 EXAMPLES = swscale-example 19 EXAMPLES = swscale-example
16 TESTPROGS = cs_test 20 TESTPROGS = cs_test
21
22 DIRS = bfin mlib ppc sparc x86
17 23
18 include $(SUBDIR)../subdir.mak 24 include $(SUBDIR)../subdir.mak
19 25
20 $(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME) 26 $(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
21 27