-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
27 lines (26 loc) · 954 Bytes
/
Makefile
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
all: clean
ln -s ${HOME}/.dotfiles/bashrc ${HOME}/.bashrc
ln -s ${HOME}/.dotfiles/ctfrc ${HOME}/.ctfrc
ln -s ${HOME}/.dotfiles/gdbinit ${HOME}/.gdbinit
ln -s ${HOME}/.dotfiles/gitconfig ${HOME}/.gitconfig
ln -s ${HOME}/.dotfiles/inputrc ${HOME}/.inputrc
ln -s ${HOME}/.dotfiles/pythonrc ${HOME}/.pythonrc
ln -s ${HOME}/.dotfiles/tmux-osx.conf ${HOME}/.tmux-osx.conf
ln -s ${HOME}/.dotfiles/tmux.conf ${HOME}/.tmux.conf
mkdir -p ${HOME}/.idapro/
ln -s ${HOME}/.dotfiles/idauser.cfg ${HOME}/.idapro/idauser.cfg
ln -s ${HOME}/.dotfiles/vimrc ${HOME}/.vimrc
mkdir -p ${HOME}/.vim/
ln -s ${HOME}/.dotfiles/vim-snippets ${HOME}/.vim/snippets
clean:
rm -rf ${HOME}/.bashrc
rm -rf ${HOME}/.ctfrc
rm -rf ${HOME}/.gdbinit
rm -rf ${HOME}/.gitconfig
rm -rf ${HOME}/.inputrc
rm -rf ${HOME}/.pythonrc
rm -rf ${HOME}/.tmux-osx.conf
rm -rf ${HOME}/.tmux.conf
rm -rf ${HOME}/.idapro/idauser.cfg
rm -rf ${HOME}/.vimrc
rm -rf ${HOME}/.vim/snippets