view libswscale/Makefile @ 21714:72e44326407e

Clarify that yuv2rgb_init.c cannot be used under LGPL
author lucabe
date Fri, 22 Dec 2006 17:57:19 +0000
parents befebdb3ebaa
children ba11e9a0880f
line wrap: on
line source


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