summaryrefslogtreecommitdiff
path: root/contrib/ffmpeg/libswscale/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ffmpeg/libswscale/Makefile')
-rw-r--r--contrib/ffmpeg/libswscale/Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/contrib/ffmpeg/libswscale/Makefile b/contrib/ffmpeg/libswscale/Makefile
index 82e9bfc02..a1c25a76a 100644
--- a/contrib/ffmpeg/libswscale/Makefile
+++ b/contrib/ffmpeg/libswscale/Makefile
@@ -2,25 +2,23 @@
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 yuv2rgb.o
-ifeq ($(TARGET_ALTIVEC),yes)
-OBJS+= yuv2rgb_altivec.o
-endif
+OBJS= swscale.o rgb2rgb.o
+
+OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o
+OBJS-$(CONFIG_GPL) += yuv2rgb.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: swscale-example.o $(LIB) -lm
clean::
rm -f cs_test swscale-example