-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (28 loc) · 719 Bytes
/
Copy pathMakefile
File metadata and controls
35 lines (28 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
CWD := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
bash:
rm -f ~/.bash_profile
ln -s $(CWD)/bash_profile ~/.bash_profile
git:
rm -f ~/.gitconfig ~/.gitignore
ln -s $(CWD)/gitconfig ~/.gitconfig
ln -s $(CWD)/gitignore ~/.gitignore
vim:
rm -f ~/.vimrc
rm -rf ~/.vim
ln -s $(CWD)/vimrc ~/.vimrc
ln -s $(CWD)/vim ~/.vim
tmux:
rm -f ~/.tmux.conf
rm -f ~/.tmux
ln -s $(CWD)/tmux.conf ~/.tmux.conf
ln -s $(CWD)/tmux ~/.tmux
deps:
$(info )
$(info You'll want to install the following:)
$(info - TMUX 1.9)
$(info - VIM 7.4)
$(info - Git 2.0)
$(info - Ag (the silver searcher))
$(info - reattach-to-user-namespace)
all: bash git vim tmux deps
.PHONY: bash git vim tmux deps