diff options
author | Filippo Valsorda <filosottile.wiki@gmail.com> | 2012-09-26 00:10:39 +0200 |
---|---|---|
committer | Filippo Valsorda <filosottile.wiki@gmail.com> | 2012-09-26 00:10:39 +0200 |
commit | 0e841bdc54c68076d82c29d541683eb844d19794 (patch) | |
tree | a326c788be84f8560082b7a0d3d8897b20cd5afb /Makefile | |
parent | 225dceb0468a0608e9805479b927f6fb8cb94067 (diff) |
add PREFIX option to make install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,8 +1,9 @@ all: youtube-dl youtube-dl.exe README.md youtube-dl.1 youtube-dl.bash-completion LATEST_VERSION +PREFIX=/usr/local install: youtube-dl youtube-dl.1 youtube-dl.bash-completion - install -m 755 --owner root --group root youtube-dl /usr/local/bin/ - install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1 + install -m 755 --owner root --group root youtube-dl $(PREFIX)/bin/ + install -m 644 --owner root --group root youtube-dl.1 $(PREFIX)/man/man1 install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl .PHONY: all install |