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.

28 lines
561B

  1. include ../config.mak
  2. # Overload incdir, postproc include files go in a different directory.
  3. incdir=$(prefix)/include/postproc
  4. NAME=postproc
  5. ifeq ($(BUILD_SHARED),yes)
  6. LIBVERSION=$(SPPVERSION)
  7. LIBMAJOR=$(SPPMAJOR)
  8. endif
  9. STATIC_OBJS=postprocess.o
  10. SHARED_OBJS=postprocess_pic.o
  11. HEADERS = postprocess.h
  12. CFLAGS = $(OPTFLAGS) -I. -I.. -I$(SRC_PATH)/libavcodec
  13. # -I/usr/X11R6/include/
  14. include $(SRC_PATH)/common.mak
  15. ifeq ($(BUILD_SHARED),yes)
  16. postprocess_pic.o: postprocess.c
  17. $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
  18. endif