]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
swscale: Add support for unscaled 8-bit Packed RGB -> Planar RGB
[ffmpeg] / libswscale / Makefile
index f39f7cbd47a4bd200090ac8d5d2c57d9367ee320..0799b458bea727911a653c1ad15050e0a7e79645 100644 (file)
@@ -1,29 +1,17 @@
-
-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
-
-cs_test: cs_test.c
-       $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)
-
-swscale-example: swscale-example.c
-       $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)
+NAME = swscale
+FFLIBS = avutil
+
+HEADERS = swscale.h                                                     \
+          version.h                                                     \
+
+OBJS = input.o                                          \
+       options.o                                        \
+       output.o                                         \
+       rgb2rgb.o                                        \
+       swscale.o                                        \
+       swscale_unscaled.o                               \
+       utils.o                                          \
+       yuv2rgb.o                                        \
+
+TESTPROGS = colorspace                                                  \
+            swscale                                                     \