mirror of https://git.ffmpeg.org/ffmpeg.git
25 lines
387 B
Makefile
25 lines
387 B
Makefile
|
|
include ../config.mak
|
|
|
|
NAME=swscale
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
LIBVERSION=$(SWSVERSION)
|
|
LIBMAJOR=$(SWSMAJOR)
|
|
endif
|
|
|
|
OBJS= swscale.o rgb2rgb.o yuv2rgb.o
|
|
ifeq ($(TARGET_ALTIVEC),yes)
|
|
OBJS+= yuv2rgb_altivec.o
|
|
endif
|
|
|
|
HEADERS = swscale.h rgb2rgb.h
|
|
|
|
include $(SRC_PATH)/common.mak
|
|
|
|
cs_test: cs_test.c $(LIB)
|
|
|
|
swscale-example: swscale-example.o $(LIB)
|
|
|
|
clean::
|
|
rm -f cs_test swscale-example
|