diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-02-11 19:01:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-11 19:01:54 +0000 |
commit | a4848db6fedefb3bed0f09335c563ffef42f2cae (patch) | |
tree | a14982a14946eb951ef3494dda12824893c36b60 /Makefile | |
parent | b12f8273fa62978511ebe7b86d68269459c5921d (diff) | |
download | ffmpeg-a4848db6fedefb3bed0f09335c563ffef42f2cae.tar.gz |
Make sure that install-progs has the proper dependencies when compiling
against shared libs.
Originally committed as revision 4984 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -110,7 +110,11 @@ documentation: install: install-progs install-libs install-headers install-man $(INSTALLVHOOK) +ifeq ($(BUILD_SHARED),yes) +install-progs: $(PROG) install-libs +else install-progs: $(PROG) +endif install -d "$(bindir)" install -c $(INSTALLSTRIP) -m 755 $(PROG) "$(bindir)" |