view libswscale/Makefile @ 21221:7124c26f3db3

Add generic target that allow compiling without any assembler or otherwise architecture specific code (except endiannes of course). Usage example: ./configure --target=generic-linux
author reimar
date Sat, 25 Nov 2006 17:58:33 +0000
parents 5298f5174a8b
children befebdb3ebaa
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 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