diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-15 22:27:43 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-15 22:27:43 +0000 |
commit | cb728d790287f570a97197b28beb47b2c0fde4f5 (patch) | |
tree | 89f12535b66db184086cea48335387c4c63eb910 /libavcodec | |
parent | 951bf3e681b3fe337e21abd0e5f80e974071f1a7 (diff) | |
download | ffmpeg-cb728d790287f570a97197b28beb47b2c0fde4f5.tar.gz |
correct DLL windows install
Originally committed as revision 2279 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 358ef8d02d..ed5642083e 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -219,22 +219,27 @@ motion-test: motion_test.o $(LIB) fft-test: fft-test.o $(LIB) $(CC) -o $@ $^ -lm -install: all ifeq ($(BUILD_SHARED),yes) +install: all install-headers +ifeq ($(CONFIG_WIN32),yes) + install -s -m 755 $(SLIB) "$(prefix)" +else install -d $(prefix)/lib install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so ldconfig || true - mkdir -p $(prefix)/include/ffmpeg - install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h - install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h +endif +else +install: endif -installlib: all +installlib: all install-headers install -m 644 $(LIB) $(prefix)/lib - mkdir -p $(prefix)/include/ffmpeg + +install-headers: + mkdir -p "$(prefix)/include/ffmpeg" install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \ - $(prefix)/include/ffmpeg + "$(prefix)/include/ffmpeg" # # include dependency files if they exist |