diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-02-11 17:06:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-11 17:06:59 +0000 |
commit | 81dcdc53a37d81d12942ab46878a3f810615f074 (patch) | |
tree | 5e1aeaf8a1fe31f3fb598f0bd17c0181f71b1169 /Makefile | |
parent | c86eb7ae86befd2f0cc9e9a50fd9ed1c0bc5da6e (diff) | |
download | ffmpeg-81dcdc53a37d81d12942ab46878a3f810615f074.tar.gz |
Separate program installation into its own target.
Originally committed as revision 4978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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)" |