mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
|
|
include ../config.mak |
|
|
|
NAME=swscale |
|
ifeq ($(BUILD_SHARED),yes) |
|
LIBVERSION=$(SWSVERSION) |
|
LIBMAJOR=$(SWSMAJOR) |
|
EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) |
|
endif |
|
|
|
# NOTE: -I.. is needed to include config.h |
|
CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil $(OPTFLAGS) \ |
|
-DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ |
|
-D_GNU_SOURCE |
|
|
|
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
|
|
|