1
mirror of https://github.com/mpv-player/mpv synced 2024-07-27 17:48:22 +02:00
mpv/libswscale/Makefile
lu_zero 3707a1426b Make example and test build and link correctly
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22048 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-01-28 17:52:59 +00:00

27 lines
475 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
OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o
OBJS-$(CONFIG_GPL) += yuv2rgb.o
HEADERS = swscale.h rgb2rgb.h
include ../common.mak
cs_test: cs_test.o $(LIB)
swscale-example: swscale-example.o $(LIB) -lm
clean::
rm -f cs_test swscale-example