diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-14 14:42:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-14 14:42:29 +0000 |
commit | 363728ea0e11b206cd8d92c73981bd2567e4f3bd (patch) | |
tree | fb7bab096f588e0cd6900bf855b58418870f2274 | |
parent | 750e37eb8313c1d00294c9b472b4ab15b4824811 (diff) | |
download | ffmpeg-363728ea0e11b206cd8d92c73981bd2567e4f3bd.tar.gz |
Build both static and shared libs from the same object.
This makes libpostproc consistent with all the other libraries.
patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com
Originally committed as revision 11526 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libpostproc/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libpostproc/Makefile b/libpostproc/Makefile index a39470be5a..0d0bfd8bce 100644 --- a/libpostproc/Makefile +++ b/libpostproc/Makefile @@ -12,15 +12,9 @@ LIBMAJOR=$(SPPMAJOR) HEADERS = postprocess.h -include ../common.mak - -$(LIBNAME): postprocess.o -$(SLIBNAME_WITH_MAJOR): postprocess_pic.o +OBJS = postprocess.o -depend dep: postprocess.c - -postprocess_pic.o: postprocess.c - $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $< +include ../common.mak uninstall-headers:: -rmdir "$(prefix)/include/postproc" |