Files
FFmpeg/libswscale/Makefile
T

32 lines
518 B
Makefile
Raw Normal View History

2001-10-24 07:34:41 +00:00
include ../config.mak
NAME=swscale
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SWSVERSION)
LIBMAJOR=$(SWSMAJOR)
endif
2001-10-24 07:34:41 +00:00
2006-10-23 14:03:49 +00:00
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
OBJS= swscale.o rgb2rgb.o
2004-06-27 00:07:15 +00:00
ifeq ($(TARGET_ALTIVEC),yes)
OBJS+= yuv2rgb_altivec.o
2004-06-27 00:07:15 +00:00
endif
ifeq ($(CONFIG_GPL),yes)
OBJS+= yuv2rgb.o
else
OBJS+= yuv2rgb_init.o
endif
2004-06-27 00:07:15 +00:00
HEADERS = swscale.h rgb2rgb.h
2004-06-27 00:07:15 +00:00
include ../common.mak
2006-08-21 12:15:29 +00:00
2006-10-05 00:57:48 +00:00
cs_test: cs_test.c $(LIB)
2006-08-21 12:15:29 +00:00
2006-10-05 17:11:05 +00:00
swscale-example: swscale-example.o $(LIB)
clean::
rm -f cs_test swscale-example