diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-30 07:54:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-30 07:54:18 +0000 |
commit | 582c1c47da05f621b84568deb50e7f89ca0dc88c (patch) | |
tree | 1f22081f43eda899bf6600d470afae040d1bf20a /libpostproc | |
parent | 992e78f5f2724bf4649211aaceb353fc0e22f7ee (diff) | |
download | ffmpeg-582c1c47da05f621b84568deb50e7f89ca0dc88c.tar.gz |
Declare libpostproc prerequisites directly instead of using a layer of
indirection. This moves build system workarounds closer to libpostproc
where they are really needed.
Originally committed as revision 10874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/Makefile b/libpostproc/Makefile index 452c105d21..a39470be5a 100644 --- a/libpostproc/Makefile +++ b/libpostproc/Makefile @@ -10,13 +10,13 @@ NAME=postproc LIBVERSION=$(SPPVERSION) LIBMAJOR=$(SPPMAJOR) -STATIC_OBJS=postprocess.o -SHARED_OBJS=postprocess_pic.o - HEADERS = postprocess.h include ../common.mak +$(LIBNAME): postprocess.o +$(SLIBNAME_WITH_MAJOR): postprocess_pic.o + depend dep: postprocess.c postprocess_pic.o: postprocess.c |