summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7af44f6364d90a02276eaf23c3c5abbf7cc11dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# small Makefile to install dotfile in ~ and custom scripts in ~/bin
DOTFILES=cvsrc gitconfig gvimrc mybashrc vimrc nethackrc gdbinit hgrc curlrc \
	 wgetrc

all:

install:
	@mkdir -p ~/bin ~/.gdb ~/.vim
	@cp bin/* ~/bin
	@for i in $(DOTFILES); do cp dotfiles/$$i ~/.$$i; done
	@cp dotfiles/vim/filetype.vim ~/.vim
	@cp -r dotfiles/vim/plugin ~/.vim
	@cp -r dotfiles/vim/syntax/ ~/.vim
	@cp dotfiles/gdb/* ~/.gdb

.PHONY: all install