# HG changeset patch # User michaelni # Date 1057959207 0 # Node ID e284cddf05090a8f376d5cd74bf0f9e33b7b3ea0 # Parent 2271829b6f7e6f97ca48835db110b50d3205e025 Shared library for libavformat support patch by (Tim Allen ) diff -r 2271829b6f7e -r e284cddf0509 Makefile --- a/Makefile Thu Jul 10 23:18:09 2003 +0000 +++ b/Makefile Fri Jul 11 21:33:27 2003 +0000 @@ -63,19 +63,39 @@ 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