1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00
FFmpeg/libswscale/Makefile
Reimar Döffinger 6e6203fb1c Copile fix: missing libswscale part of ffmpeg r9322 TARGET_ARCH -> ARCH change.
Originally committed as revision 23562 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-06-16 15:17:00 +00:00

29 lines
565 B
Makefile

include ../config.mak
NAME=swscale
LIBVERSION=$(SWSVERSION)
LIBMAJOR=$(SWSMAJOR)
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
OBJS= swscale.o rgb2rgb.o
OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o
OBJS-$(CONFIG_GPL) += yuv2rgb.o
OBJS-$(ARCH_BFIN) += yuv2rgb_bfin.o
ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o
HEADERS = swscale.h rgb2rgb.h
include ../common.mak
cs_test: cs_test.o $(LIB)
swscale-example: swscale-example.o $(LIB)
swscale-example: EXTRALIBS += -lm
clean::
rm -f cs_test swscale-example