]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
Cosmetics:
[ffmpeg] / libswscale / Makefile
index 84675e0c88bb6ec7397ea4da119960ae121be612..247ae8d239baf7ff834699bc5a7bf64991228329 100644 (file)
@@ -3,23 +3,22 @@ include $(SUBDIR)../config.mak
 NAME = swscale
 FFLIBS = avutil
 
-OBJS = rgb2rgb.o swscale.o swscale_avoption.o
-
-OBJS-$(ARCH_BFIN)          +=  internal_bfin.o swscale_bfin.o yuv2rgb_bfin.o
-OBJS-$(CONFIG_GPL)         +=  yuv2rgb.o
-OBJS-$(CONFIG_MLIB)        +=  yuv2rgb_mlib.o
-OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
-OBJS-$(HAVE_VIS)           +=  yuv2rgb_vis.o
-
 HEADERS = swscale.h
 
-TESTS = cs_test swscale-example
+OBJS = options.o rgb2rgb.o swscale.o yuv2rgb.o
 
-CLEANFILES = cs_test swscale-example
+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
 
-include $(SUBDIR)../subdir.mak
+MMX-OBJS-$(CONFIG_GPL)     +=  x86/yuv2rgb_mmx.o        \
 
-$(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
+EXAMPLES  = swscale
+TESTPROGS = colorspace
 
-$(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
-$(SUBDIR)swscale-example: EXTRALIBS += -lm
+DIRS = bfin mlib ppc sparc x86
+
+include $(SUBDIR)../subdir.mak