Makefile 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. NAME = swscale
  2. DESC = FFmpeg image rescaling library
  3. HEADERS = swscale.h \
  4. version.h \
  5. version_major.h \
  6. OBJS = alphablend.o \
  7. hscale.o \
  8. hscale_fast_bilinear.o \
  9. gamma.o \
  10. input.o \
  11. options.o \
  12. output.o \
  13. rgb2rgb.o \
  14. slice.o \
  15. swscale.o \
  16. swscale_unscaled.o \
  17. utils.o \
  18. version.o \
  19. yuv2rgb.o \
  20. vscale.o \
  21. # Objects duplicated from other libraries for shared builds
  22. SHLIBOBJS += log2_tab.o
  23. # Windows resource file
  24. SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
  25. TESTPROGS = colorspace \
  26. floatimg_cmp \
  27. pixdesc_query \
  28. swscale \