1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 03:15:52 +00:00
mpv/libswscale/Makefile
lucabe 1e56d3bf13 make libswscale build system similar to the libav* one
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18994 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-07-10 12:35:52 +00:00

23 lines
477 B
Makefile

include ../config.mak
NAME=swscale
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SWSVERSION)
LIBMAJOR=$(SWSMAJOR)
endif
# NOTE: -I.. is needed to include config.h
CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
-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