]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
move svq3 specific fields to the end of the context
[ffmpeg] / libswscale / Makefile
index 39a967624e8a1726ac31aa50fe50dee6dbede749..9ae28e07ef4d5c20c10feefa56d80246397fee0e 100644 (file)
@@ -3,26 +3,21 @@ include $(SUBDIR)../config.mak
 NAME = swscale
 FFLIBS = avutil
 
-OBJS = rgb2rgb.o swscale.o
+HEADERS = swscale.h
 
-ASM_OBJS-$(ARCH_BFIN)      +=  internal_bfin.o
-OBJS-$(ARCH_BFIN)          +=  swscale_bfin.o yuv2rgb_bfin.o
+OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o
 
-OBJS-$(CONFIG_GPL)         +=  yuv2rgb.o
+OBJS-$(ARCH_BFIN)          +=  bfin/internal_bfin.o     \
+                               bfin/swscale_bfin.o      \
+                               bfin/yuv2rgb_bfin.o
+OBJS-$(CONFIG_MLIB)        +=  mlib/yuv2rgb_mlib.o
+OBJS-$(HAVE_ALTIVEC)       +=  ppc/yuv2rgb_altivec.o
+OBJS-$(HAVE_VIS)           +=  sparc/yuv2rgb_vis.o
 
-OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
+MMX-OBJS-$(CONFIG_GPL)     +=  x86/yuv2rgb_mmx.o        \
 
-OBJS-$(CONFIG_MLIB)        +=  yuv2rgb_mlib.c
-OBJS-$(HAVE_VIS)           +=  yuv2rgb_vis.c
+TESTPROGS = colorspace swscale
 
-
-HEADERS = swscale.h rgb2rgb.h
-
-CLEANFILES = cs_test swscale-example
+DIRS = bfin mlib ppc sparc x86
 
 include $(SUBDIR)../subdir.mak
-
-$(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
-
-$(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
-$(SUBDIR)swscale-example: EXTRALIBS += -lm