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.

30 lines
607B

  1. include ../config.mak
  2. CFLAGS+=-I$(SRC_PATH)/libavcodec
  3. OBJS = avfilter.o \
  4. avfiltergraph.o \
  5. avfiltergraphdesc.o \
  6. defaults.o \
  7. # TODO: real conditional compilation
  8. OBJS-yes = vsrc_dummy.o \
  9. vsrc_ppm.o \
  10. vf_crop.o \
  11. vf_fps.o \
  12. vf_overlay.o \
  13. vf_passthrough.o \
  14. vf_rgb2bgr.o \
  15. vf_slicify.o \
  16. vf_vflip.o \
  17. HEADERS = avfilter.h
  18. EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
  19. NAME=avfilter
  20. LIBVERSION=$(LAVFILTERVERSION)
  21. LIBMAJOR=$(LAVFILTERMAJOR)
  22. include ../common.mak