-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (16 loc) · 774 Bytes
/
Makefile
File metadata and controls
18 lines (16 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# the following make file is based on the idea from
# https://github.com/fatih/dotfiles/blob/master/Makefile
all:
[ -f ~/.bash_profile ] || ln -s $(PWD)/bash_profile ~/.bash_profile
[ - ~/.ctags ] || ln -s $(PWD)/ctags ~/.ctags
[ - ~/.gitconfig ] || ln -s $(PWD)/gitconfig ~/.gitconfig
[ - ~/.gitignore ] || ln -s $(PWD)/gitignore ~/.gitignore
[ - ~/.hgrc ] || ln -s $(PWD)/hgrc ~/.hgrc
[ - ~/.inputrc ] || ln -s $(PWD)/inputrc ~/.inputrc
[ - ~/.pryrc ] || ln -s $(PWD)/pryrc ~/.pryrc
[ - ~/.xinitrc ] || ln -s $(PWD)/xinitrc ~/.xinitrc
[ - ~/.xsession ] || ln -s $(PWD)/xsession ~/.xsession
[ - ~/.zlogin ] || ln -s $(PWD)/zlogin ~/.zlogin
[ - ~/.tmux.conf ] || ln -s $(PWD)/tmux.conf ~/.tmux.conf
[ - ~/.psqlrc ] || ln -s $(PWD)/psqlrc ~/.psqlrc
.PHONY: all