mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 04:45:33 +00:00
685e04e080
Since mplayer always define CONFIG_GPL, this commit should not change anything for mplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21699 b3059339-0415-0410-9bf9-f77b7e298cf2
32 lines
518 B
Makefile
32 lines
518 B
Makefile
|
|
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
|
|
else
|
|
OBJS+= yuv2rgb_init.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
|