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.

31 lines
616B

  1. include ../config.mak
  2. NAME=swscale
  3. LIBVERSION=$(SWSVERSION)
  4. LIBMAJOR=$(SWSMAJOR)
  5. EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
  6. OBJS= swscale.o rgb2rgb.o
  7. OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o
  8. OBJS-$(CONFIG_GPL) += yuv2rgb.o
  9. OBJS-$(ARCH_BFIN) += yuv2rgb_bfin.o \
  10. swscale_bfin.o \
  11. ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o
  12. HEADERS = swscale.h rgb2rgb.h
  13. include ../common.mak
  14. cs_test: cs_test.o $(LIB)
  15. swscale-example: swscale-example.o $(LIB)
  16. swscale-example: EXTRALIBS += -lm
  17. clean::
  18. rm -f cs_test swscale-example