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.

27 lines
549B

  1. include ../config.mak
  2. # Overload incdir, postproc include files go in a different directory.
  3. INCDIR=$(prefix)/include/postproc
  4. EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
  5. NAME=postproc
  6. LIBVERSION=$(SPPVERSION)
  7. LIBMAJOR=$(SPPMAJOR)
  8. STATIC_OBJS=postprocess.o
  9. SHARED_OBJS=postprocess_pic.o
  10. HEADERS = postprocess.h
  11. include ../common.mak
  12. depend dep: postprocess.c
  13. postprocess_pic.o: postprocess.c
  14. $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
  15. uninstall-headers::
  16. -rmdir "$(prefix)/include/postproc"