etc/Makefile

47 lines
1.1 KiB
Makefile
Raw Normal View History

2013-04-27 10:51:39 +02:00
FILES = bashrc vimrc zshrc emacs.el gitconfig screenrc commonshrc \
2015-01-19 08:25:13 +01:00
gnomerc gvimrc muttrc pentadactylrc mailcap latexmkrc
2013-11-01 19:27:13 +01:00
FILES2 = msmtprc
2013-12-29 18:46:59 +01:00
.PHONY: install clean check
2011-07-28 22:05:16 +02:00
install: install-conf install-vim-plug
2011-07-28 22:05:16 +02:00
2013-12-29 18:32:58 +01:00
ifeq ($(OS),Windows_NT)
2015-01-03 12:17:43 +01:00
HOME = $(HOMEDRIVE)$(HOMEPATH)
2015-01-03 16:31:35 +01:00
install-conf: $(FILES) $(FILES2)
2013-12-29 18:32:58 +01:00
cp gitconfig $(HOME)\.gitconfig
cp vimrc $(HOME)\_vimrc
cp gvimrc $(HOME)\_gvimrc
2015-01-03 12:17:43 +01:00
VIM_DIR = $(HOME)\vimfiles
install-vim-plug:
test -d $(VIM_DIR)\autoload || mkdir $(VIM_DIR)\autoload
test -f $(VIM_DIR)/autoload/plug.vim || curl -k -fLo $(VIM_DIR)/autoload/plug.vim \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
2013-12-29 18:46:59 +01:00
2013-12-29 18:32:58 +01:00
else
2015-01-03 16:29:22 +01:00
install-conf: $(FILES) $(FILES2)
2011-07-28 22:05:16 +02:00
for i in $(FILES); do install -m0644 $$i ~/.$$i; done
2013-11-01 19:27:13 +01:00
for i in $(FILES2); do install -m0600 $$i ~/.$$i; done
2011-07-28 22:05:16 +02:00
2013-04-27 10:51:39 +02:00
check: $(FILES)
for i in $(FILES); do diff -u ~/.$$i $$i; done
2011-07-28 22:05:16 +02:00
VIM_DIR = $(HOME)/.vim
2013-12-29 18:46:59 +01:00
install-vim-plug:
mkdir -p $(VIM_DIR)/autoload
2015-01-03 12:17:43 +01:00
test -f $(VIM_DIR)/autoload/plug.vim || curl -fLo $(VIM_DIR)/autoload/plug.vim \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
2013-12-29 18:46:59 +01:00
2015-01-03 12:17:43 +01:00
endif
2013-12-29 18:32:58 +01:00
clean:
2011-07-28 22:05:16 +02:00
%: %.m4
m4 $< >$@