view libswscale/Makefile @ 21696:68d7472231cf

consistent naming for revision tags
author diego
date Thu, 21 Dec 2006 08:09:32 +0000
parents befebdb3ebaa
children 72e44326407e
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
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