summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-02-11 17:06:59 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-11 17:06:59 +0000
commit81dcdc53a37d81d12942ab46878a3f810615f074 (patch)
tree5e1aeaf8a1fe31f3fb598f0bd17c0181f71b1169
parentc86eb7ae86befd2f0cc9e9a50fd9ed1c0bc5da6e (diff)
Separate program installation into its own target.
Originally committed as revision 4978 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2a3bd9e668..0d04b986bb 100644
--- a/Makefile
+++ b/Makefile
@@ -108,10 +108,12 @@ documentation:
.PHONY: install
-install: all install-man $(INSTALLVHOOK)
+install: all install-progs install-man $(INSTALLVHOOK)
$(MAKE) -C libavutil install
$(MAKE) -C libavcodec install
$(MAKE) -C libavformat install
+
+install-progs:
install -d "$(bindir)"
install -c $(INSTALLSTRIP) -m 755 $(PROG) "$(bindir)"