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.

26 lines
472B

  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-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o
  8. OBJS-$(CONFIG_GPL) += yuv2rgb.o
  9. HEADERS = swscale.h rgb2rgb.h
  10. include ../common.mak
  11. cs_test: cs_test.o $(LIB)
  12. swscale-example: swscale-example.o $(LIB)
  13. swscale-example: EXTRALIBS += -lm
  14. clean::
  15. rm -f cs_test swscale-example