]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
Cosmetics:
[ffmpeg] / libswscale / Makefile
index 62aebc9a014816081d73655fe90b1bca4ec4489f..247ae8d239baf7ff834699bc5a7bf64991228329 100644 (file)
@@ -1,22 +1,24 @@
+include $(SUBDIR)../config.mak
 
-include ../config.mak
+NAME = swscale
+FFLIBS = avutil
 
-NAME=swscale
-ifeq ($(BUILD_SHARED),yes)
-LIBVERSION=$(SWSVERSION)
-LIBMAJOR=$(SWSMAJOR)
-endif
+HEADERS = swscale.h
 
-# 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 = options.o rgb2rgb.o swscale.o yuv2rgb.o
 
-OBJS= swscale.o rgb2rgb.o yuv2rgb.o
-ifeq ($(TARGET_ALTIVEC),yes)
-OBJS+=  yuv2rgb_altivec.o
-endif
+OBJS-$(ARCH_BFIN)          +=  bfin/internal_bfin.o     \
+                               bfin/swscale_bfin.o      \
+                               bfin/yuv2rgb_bfin.o
+OBJS-$(CONFIG_MLIB)        +=  mlib/yuv2rgb_mlib.o
+OBJS-$(HAVE_ALTIVEC)       +=  ppc/yuv2rgb_altivec.o
+OBJS-$(HAVE_VIS)           +=  sparc/yuv2rgb_vis.o
 
-HEADERS = swscale.h rgb2rgb.h
+MMX-OBJS-$(CONFIG_GPL)     +=  x86/yuv2rgb_mmx.o        \
 
-include $(SRC_PATH)/common.mak
+EXAMPLES  = swscale
+TESTPROGS = colorspace
+
+DIRS = bfin mlib ppc sparc x86
+
+include $(SUBDIR)../subdir.mak