Makefile 523 B

1234567891011121314151617181920212223242526
  1. include ../config.mak
  2. NAME = swscale
  3. FFLIBS = avutil
  4. OBJS = rgb2rgb.o swscale.o
  5. OBJS-$(CONFIG_GPL) += yuv2rgb.o
  6. OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o
  7. OBJS-$(ARCH_BFIN) += swscale_bfin.o \
  8. yuv2rgb_bfin.o \
  9. ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o
  10. HEADERS = swscale.h rgb2rgb.h
  11. include ../common.mak
  12. cs_test: cs_test.o $(LIBNAME)
  13. swscale-example: swscale-example.o $(LIBNAME)
  14. swscale-example: EXTRALIBS += -lm
  15. clean::
  16. rm -f cs_test swscale-example