diff options
author | dakkar <dakkar@thenautilus.net> | 2010-05-28 23:19:47 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2010-05-28 23:19:47 +0100 |
commit | c31641c3f0fcbdf4a79e39389be9ac498a2e5221 (patch) | |
tree | f6cf18147f135b666414954efee1545c48e00724 /Makefile | |
parent | add a (prefix) to the prompt (diff) | |
parent | Whitespace cleanup. (diff) | |
download | git-prompt-c31641c3f0fcbdf4a79e39389be9ac498a2e5221.tar.gz git-prompt-c31641c3f0fcbdf4a79e39389be9ac498a2e5221.tar.bz2 git-prompt-c31641c3f0fcbdf4a79e39389be9ac498a2e5221.zip |
Merge branch 'master' into dakkar
also, fix new features to work my way
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -1,7 +1,16 @@ -HOMEDIR ?= /home/lvv/p/volnitsky.com/ -include $(HOMEDIR)/include.mk +ifeq ($(USER),lvv) + HOMEDIR := /home/lvv/p/volnitsky.com/ + INCLUDE := $(HOMEDIR)/include.mk +else + INCLUDE := /dev/null +endif + +include $(INCLUDE) + + COPY_LIST = git-prompt.sh + install: cp -v git-prompt.sh /etc/ [ -f /etc/git-prompt.conf ] || cp -v git-prompt.conf /etc/ |