envvar overrideable PREFIX, BINDIR, MANDIR, PYTHON

This commit is contained in:
rubicks 2014-08-14 11:01:23 -04:00
parent 664718ff63
commit df866e7f2a
No known key found for this signature in database
GPG Key ID: 6549ED02A5240B46
1 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,10 @@ clean:
cleanall: clean
rm -f youtube-dl youtube-dl.exe
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/man
PYTHON=/usr/bin/env python
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/man
PYTHON ?= /usr/bin/env python
# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
ifeq ($(PREFIX),/usr)