0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/libswscale/Makefile
lucabe 22bff1ea7c Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20816 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-11-09 15:13:56 +00:00

27 lines
451 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 yuv2rgb.o
ifeq ($(TARGET_ALTIVEC),yes)
OBJS+= yuv2rgb_altivec.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