diff options
author | Tim Allen <tim@proximity.com.au> | 2003-07-11 21:33:27 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-11 21:33:27 +0000 |
commit | 6bc114b2fb026ff0c521caf206ad08fdb5910383 (patch) | |
tree | b56174bf7a6186cc9d6f4b15e8972b9a045ee0b7 /libavformat/Makefile | |
parent | 14b3225377998175b0ce1026432d179d34d179c0 (diff) | |
download | ffmpeg-6bc114b2fb026ff0c521caf206ad08fdb5910383.tar.gz |
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
Originally committed as revision 2033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index e5aa9c4a42..b689b8ead8 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -63,19 +63,39 @@ OBJS+= ogg.o endif LIB= $(LIBPREF)avformat$(LIBSUF) +ifeq ($(BUILD_SHARED),yes) +SLIB= $(SLIBPREF)avformat$(SLIBSUF) +endif SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp) -all: $(LIB) +all: $(LIB) $(SLIB) $(LIB): $(OBJS) $(PPOBJS) rm -f $@ $(AR) rc $@ $(OBJS) $(PPOBJS) $(RANLIB) $@ +$(SLIB): $(OBJS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) + depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend +install: all +ifeq ($(BUILD_SHARED),yes) + install -d $(prefix)/lib + install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so + ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so + ldconfig || true + mkdir -p $(prefix)/include/ffmpeg + install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h + install -m 644 $(VPATH)/avio.h $(prefix)/include/ffmpeg/avio.h + install -m 644 $(VPATH)/rtp.h $(prefix)/include/ffmpeg/rtp.h + install -m 644 $(VPATH)/rtsp.h $(prefix)/include/ffmpeg/rtsp.h + install -m 644 $(VPATH)/rtspcodes.h $(prefix)/include/ffmpeg/rtspcodes.h +endif + installlib: all install -m 644 $(LIB) $(prefix)/lib mkdir -p $(prefix)/include/ffmpeg |