mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
490 B
29 lines
490 B
|
|
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 |
|
|
|
HEADERS = swscale.h rgb2rgb.h |
|
|
|
include ../common.mak |
|
|
|
cs_test: cs_test.c $(LIB) |
|
|
|
swscale-example: swscale-example.o $(LIB) |
|
|
|
clean:: |
|
rm -f cs_test swscale-example
|
|
|