diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-06-01 21:37:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-06-01 21:37:48 +0000 |
commit | 6d9a2421061f7a3481c9ea5cc4148313ee63c511 (patch) | |
tree | 0a65923d6525d40a04c296470d8efc08449005bb /libpostproc/Makefile | |
parent | dcd479c0339ffc73452d1524cda36bc29463e0e0 (diff) | |
download | ffmpeg-streaming-6d9a2421061f7a3481c9ea5cc4148313ee63c511.zip ffmpeg-streaming-6d9a2421061f7a3481c9ea5cc4148313ee63c511.tar.gz |
libavcodec/libpostproc ---> libpostproc
Originally committed as revision 5440 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/Makefile')
-rw-r--r-- | libpostproc/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libpostproc/Makefile b/libpostproc/Makefile new file mode 100644 index 0000000..2a7eb42 --- /dev/null +++ b/libpostproc/Makefile @@ -0,0 +1,28 @@ + +include ../config.mak + +# Overload incdir, postproc include files go in a different directory. +incdir=$(prefix)/include/postproc + +NAME=postproc +SUBDIR=libavcodec/libpostproc +ifeq ($(BUILD_SHARED),yes) +LIBVERSION=$(SPPVERSION) +LIBMAJOR=$(SPPMAJOR) +endif + +STATIC_OBJS=postprocess.o +SHARED_OBJS=postprocess_pic.o + +HEADERS = postprocess.h + +CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -I$(SRC_PATH)/libavcodec -I../.. $(EXTRA_INC) +# -I/usr/X11R6/include/ + +include $(SRC_PATH)/common.mak + +ifeq ($(BUILD_SHARED),yes) +postprocess_pic.o: postprocess.c + $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $< +endif + |