diff options
Diffstat (limited to 'contrib/ffmpeg/libpostproc/Makefile')
| -rw-r--r-- | contrib/ffmpeg/libpostproc/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/ffmpeg/libpostproc/Makefile b/contrib/ffmpeg/libpostproc/Makefile new file mode 100644 index 000000000..a6765365d --- /dev/null +++ b/contrib/ffmpeg/libpostproc/Makefile @@ -0,0 +1,26 @@ + +include ../config.mak + +# Overload incdir, postproc include files go in a different directory. +incdir=$(prefix)/include/postproc + +EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) + +NAME=postproc +ifeq ($(BUILD_SHARED),yes) +LIBVERSION=$(SPPVERSION) +LIBMAJOR=$(SPPMAJOR) +endif + +STATIC_OBJS=postprocess.o +SHARED_OBJS=postprocess_pic.o + +HEADERS = postprocess.h + +include ../common.mak + +depend dep: postprocess.c + +postprocess_pic.o: postprocess.c + $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $< + |
