Makefile 524 B

123456789101112131415161718192021222324252627
  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