mirror of https://git.ffmpeg.org/ffmpeg.git
31 lines
617 B
Makefile
31 lines
617 B
Makefile
|
|
include ../config.mak
|
|
|
|
NAME=swscale
|
|
LIBVERSION=$(SWSVERSION)
|
|
LIBMAJOR=$(SWSMAJOR)
|
|
|
|
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
|
|
|
|
OBJS = rgb2rgb.o swscale.o
|
|
|
|
OBJS-$(CONFIG_GPL) += yuv2rgb.o
|
|
OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o
|
|
|
|
OBJS-$(ARCH_BFIN) += swscale_bfin.o \
|
|
yuv2rgb_bfin.o \
|
|
|
|
ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o
|
|
|
|
HEADERS = swscale.h rgb2rgb.h
|
|
|
|
include ../common.mak
|
|
|
|
cs_test: cs_test.o $(LIB)
|
|
|
|
swscale-example: swscale-example.o $(LIB)
|
|
swscale-example: EXTRALIBS += -lm
|
|
|
|
clean::
|
|
rm -f cs_test swscale-example
|