Allow user to specify PREFIX

Now users can specify PREFIX when they run make:

PREFIX=$HOME make

Without a defined PREFIX, it defaults to /usr/local, so this is
backward compatible to previous behavior.
This commit is contained in:
Jonathan "Duke" Leto 2010-09-08 12:58:39 -07:00
parent aefe5c0f1c
commit fc46f303e0

View file

@ -1,5 +1,7 @@
ifeq ($(PREFIX),)
PREFIX = /usr/local
endif
BINS = $(wildcard bin/git-*)