]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
swscale: Remove disabled code.
[ffmpeg] / libswscale / Makefile
index 14a65b92c0aed51c645e6f75c7ff82e41a7c94c5..7f8f721e45646b0b3284e8faf12c972f0996764f 100644 (file)
@@ -1,30 +1,23 @@
+include $(SUBDIR)../config.mak
 
-include ../config.mak
+NAME = swscale
+FFLIBS = avutil
 
-NAME=swscale
-LIBVERSION=$(SWSVERSION)
-LIBMAJOR=$(SWSMAJOR)
+HEADERS = swscale.h
 
-EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
+OBJS = options.o rgb2rgb.o swscale.o utils.o yuv2rgb.o
 
-OBJS = rgb2rgb.o swscale.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_MMX)           +=  x86/rgb2rgb.o            \
+                               x86/yuv2rgb_mmx.o
+OBJS-$(HAVE_VIS)           +=  sparc/yuv2rgb_vis.o
 
-OBJS-$(CONFIG_GPL)         +=  yuv2rgb.o
-OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
+TESTPROGS = colorspace swscale
 
-OBJS-$(ARCH_BFIN)          +=  swscale_bfin.o \
-                               yuv2rgb_bfin.o \
+DIRS = bfin mlib ppc sparc x86
 
-ASM_OBJS-$(ARCH_BFIN)      += internal_bfin.o
-
-HEADERS = swscale.h rgb2rgb.h
-
-include ../common.mak
-
-cs_test: cs_test.o $(LIBNAME)
-
-swscale-example: swscale-example.o $(LIBNAME)
-swscale-example: EXTRALIBS += -lm
-
-clean::
-       rm -f cs_test swscale-example
+include $(SUBDIR)../subdir.mak