public
Description: My dotfiles
Homepage: http://ciaranm.wordpress.com/
Clone URL: git://github.com/ciaranm/dotfiles-ciaranm.git
dotfiles-ciaranm / Makefile
100644 41 lines (29 sloc) 0.985 kb
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
36
37
38
39
40
41
CONFIGS = \
Makefile \
Xdefaults \
bashrc \
screenrc \
toprc \
vimrc \
conkyrc-snowmobile \
conkyrc-snowcone \
xbindkeysrc-snowcone \
rc.lua-snowmobile \
theme.lua-snowmobile
 
default : all
 
all : $(CONFIGS)
 
clean :
rm *~ ftp-install-script || true
 
install-file-% : %
install $* $(HOME)/.$*
 
install-file-conkyrc-snowmobile : conkyrc-snowmobile
test `hostname` != 'snowmobile' || install $< $(HOME)/.conkyrc
 
install-file-conkyrc-snowcone : conkyrc-snowcone
test `hostname` != 'snowcone' || install $< $(HOME)/.conkyrc
 
install-file-xbindkeysrc-snowcone : xbindkeysrc-snowcone
test `hostname` != 'snowcone' || install $< $(HOME)/.xbindkeysrc
 
install-file-rc.lua-snowmobile : rc.lua-snowmobile
test `hostname` != 'snowmobile' || install $< $(HOME)/.config/awesome/rc.lua
 
install-file-theme.lua-snowmobile : theme.lua-snowmobile
test `hostname` != 'snowmobile' || install $< $(HOME)/.config/awesome/theme.lua
 
install: $(foreach f, $(CONFIGS), install-file-$(f) )