X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/blobdiff_plain/1246640aa244671e446a76ece7150f832160d433..6cbac7ed3ab92dfd2b2264234eaf9686db64e95d:/libswscale/Makefile diff --git a/libswscale/Makefile b/libswscale/Makefile index 38a33e2..a1c25a7 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -2,22 +2,23 @@ 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=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \ - -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ - -D_GNU_SOURCE +EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) -OBJS= swscale.o rgb2rgb.o yuv2rgb.o -ifeq ($(TARGET_ALTIVEC),yes) -OBJS+= yuv2rgb_altivec.o -endif +OBJS= swscale.o rgb2rgb.o + +OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o +OBJS-$(CONFIG_GPL) += yuv2rgb.o HEADERS = swscale.h rgb2rgb.h -include $(SRC_PATH)/common.mak +include ../common.mak + +cs_test: cs_test.o $(LIB) + +swscale-example: swscale-example.o $(LIB) -lm + +clean:: + rm -f cs_test swscale-example