]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
make arguments to ssd_int8_vs_int16() const
[ffmpeg] / libswscale / Makefile
index c65a3a9c86c467fd1d712d0a30ba13620d9414c7..35a132c218889b17dd18e305567d2b8a0882a5e0 100644 (file)
@@ -2,28 +2,29 @@
 include ../config.mak
 
 NAME=swscale
-ifeq ($(BUILD_SHARED),yes)
 LIBVERSION=$(SWSVERSION)
 LIBMAJOR=$(SWSMAJOR)
-endif
 
 EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
 
 OBJS= swscale.o rgb2rgb.o
-ifeq ($(TARGET_ALTIVEC),yes)
-OBJS+=  yuv2rgb_altivec.o
-endif
-ifeq ($(CONFIG_GPL),yes)
-OBJS+=  yuv2rgb.o
-endif
+
+OBJS-$(HAVE_ALTIVEC)       +=  yuv2rgb_altivec.o
+OBJS-$(CONFIG_GPL)         +=  yuv2rgb.o
+
+OBJS-$(ARCH_BFIN)          +=  yuv2rgb_bfin.o \
+                               swscale_bfin.o \
+
+ASM_OBJS-$(ARCH_BFIN)      += internal_bfin.o
 
 HEADERS = swscale.h rgb2rgb.h
 
 include ../common.mak
 
-cs_test: cs_test.c $(LIB)
+cs_test: cs_test.o $(LIB)
 
 swscale-example: swscale-example.o $(LIB)
+swscale-example: EXTRALIBS += -lm
 
 clean::
        rm -f cs_test swscale-example