diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-14 21:27:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-14 21:27:25 +0000 |
commit | bba9b16c265f7a0ce3a1bc5dbf88d178ebec457a (patch) | |
tree | 16024959c1ac83c766f7dd0cf556a5ecaf6c4a19 /libavcodec/libpostproc/Makefile | |
parent | 7d67e968a4ec375257c21e4658d91452aeba9a74 (diff) | |
download | ffmpeg-bba9b16c265f7a0ce3a1bc5dbf88d178ebec457a.tar.gz |
moving postprocess to ffmpeg/libavcodec
Originally committed as revision 1586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Originally committed as revision 9427 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Originally committed as revision 9428 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'libavcodec/libpostproc/Makefile')
-rw-r--r-- | libavcodec/libpostproc/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libavcodec/libpostproc/Makefile b/libavcodec/libpostproc/Makefile new file mode 100644 index 0000000000..095dec91ae --- /dev/null +++ b/libavcodec/libpostproc/Makefile @@ -0,0 +1,64 @@ + +include ../../config.mak + +ifeq ($(SHARED_PP),yes) +SPPLIB = libpostproc.so +SPPVERSION = 0.0.1 +endif +PPLIB = libpostproc.a + +PPOBJS=postprocess.o +SPPOBJS=postprocess_pic.o + +CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC) +# -I/usr/X11R6/include/ + +.SUFFIXES: .c .o + +# .PHONY: all clean + +.c.o: + $(CC) -c $(CFLAGS) -I.. -I../.. -o $@ $< + +all: $(SWSLIB) $(PPLIB) $(SPPLIB) + +clean: + rm -f *.o *.a *~ *.so + +distclean: + rm -f Makefile.bak *.o *.a *~ *.so .depend + +dep: depend + +depend: + $(CC) -MM $(CFLAGS) postprocess.c 1>.depend + +ifeq ($(SHARED_PP),yes) +postprocess_pic.o: postprocess.c + $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $< + +$(SPPLIB): $(SPPOBJS) + $(CC) -shared -Wl,-soname,$(SPPLIB).0 \ + -o $(SPPLIB) $(SPPOBJS) +endif + +$(PPLIB): $(PPOBJS) + $(AR) r $(PPLIB) $(PPOBJS) + +install: all +ifeq ($(SHARED_PP),yes) + install -d $(prefix)/lib + install -s -m 755 $(SPPLIB) $(prefix)/lib/$(SPPLIB).$(SPPVERSION) + ln -sf $(SPPLIB).$(SPPVERSION) $(prefix)/lib/$(SPPLIB) + ldconfig || true + mkdir -p $(prefix)/include/postproc + install -m 644 postprocess.h $(prefix)/include/postproc/postprocess.h +endif + + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif |