]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/Makefile
lavu: Drop the {minus,plus}1 suffix from AVComponentDescriptor fields
[ffmpeg] / libswscale / Makefile
index 29abaeb0fc0c20fa436e9501611cea9542d578c8..3e8614da2b60ff10c451116a653e1b8dc5b2adb2 100644 (file)
@@ -1,29 +1,16 @@
-
-include ../config.mak
-
-NAME=swscale
-ifeq ($(BUILD_SHARED),yes)
-LIBVERSION=$(SWSVERSION)
-LIBMAJOR=$(SWSMAJOR)
-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_ISOC9X_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 $(LIB)
-
-swscale-example: swscale-example.o $(LIB)
-
-clean::
-       rm -f cs_test swscale-example
+NAME = swscale
+
+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                                                     \