Makefile 1.32 KB
Newer Older
1
NAME = swscale
James Almer's avatar
James Almer committed
2
DESC = FFmpeg image rescaling library
Luca Abeni's avatar
Luca Abeni committed
3

4 5
HEADERS = swscale.h                                                     \
          version.h                                                     \
6

7
OBJS = alphablend.o                                     \
8
       hscale.o                                         \
9
       hscale_fast_bilinear.o                           \
10
       gamma.o                                          \
11
       input.o                                          \
12 13 14
       options.o                                        \
       output.o                                         \
       rgb2rgb.o                                        \
15
       slice.o                                          \
16 17 18 19
       swscale.o                                        \
       swscale_unscaled.o                               \
       utils.o                                          \
       yuv2rgb.o                                        \
20
       vscale.o                                         \
21

22 23
OBJS-$(CONFIG_SHARED)        += log2_tab.o

24 25 26
# Windows resource file
SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o

27
TESTPROGS = colorspace                                                  \
28
            pixdesc_query                                               \
29
            swscale                                                     \