You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
622B

  1. include $(SUBDIR)../config.mak
  2. NAME = swscale
  3. FFLIBS = avutil
  4. HEADERS = swscale.h
  5. OBJS = options.o rgb2rgb.o swscale.o yuv2rgb.o
  6. OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \
  7. bfin/swscale_bfin.o \
  8. bfin/yuv2rgb_bfin.o
  9. OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o
  10. OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o
  11. OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o
  12. MMX-OBJS-$(CONFIG_GPL) += x86/yuv2rgb_mmx.o \
  13. EXAMPLES = swscale
  14. TESTPROGS = colorspace
  15. DIRS = bfin mlib ppc sparc x86
  16. include $(SUBDIR)../subdir.mak