aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 13 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 002c950..d9acb35 100644
--- a/Makefile
+++ b/Makefile
@@ -2,17 +2,21 @@ PWD=$(shell pwd)
2 2
3THEMES_DIR = .local/share/themes 3THEMES_DIR = .local/share/themes
4CONFIG_DIR = .config 4CONFIG_DIR = .config
5
5NUMIX = numix-no-title 6NUMIX = numix-no-title
7HERBSTLUFT = herbstluftwm
8
6BASHRC = .bashrc 9BASHRC = .bashrc
7COMPTON = .compton 10COMPTON = .compton
11LIQUIDPROMPT = liquidpromptrc
12LP_PS1 = .lp_ps1
8VIMRC = .vimrc 13VIMRC = .vimrc
9HERBSTLUFT = herbstluftwm
10XRESOURCES = .Xresources 14XRESOURCES = .Xresources
11 15
12 16
13install: all 17install: all
14 18
15all: bash compton vim xresources numix-no-title herbstluftwm 19all: bash compton liquidprompt vim xresources numix-no-title herbstluftwm
16 20
17numix-no-title: 21numix-no-title:
18 mkdir -p ~/$(THEMES_DIR) 22 mkdir -p ~/$(THEMES_DIR)
@@ -28,6 +32,10 @@ bash:
28compton: 32compton:
29 ln -sf $(PWD)/$(COMPTON) ~ 33 ln -sf $(PWD)/$(COMPTON) ~
30 34
35liquidprompt:
36 ln -sf $(PWD)/$(LIQUIDPROMPT) ~
37 ln -sf $(PWD)/$(LP_PS1) ~
38
31vim: 39vim:
32 ln -sf $(PWD)/$(VIMRC) ~ 40 ln -sf $(PWD)/$(VIMRC) ~
33 41
@@ -38,7 +46,9 @@ uninstall:
38 #remove all 46 #remove all
39 -rm ~/$(THEMES_DIR)/$(NUMIX) 47 -rm ~/$(THEMES_DIR)/$(NUMIX)
40 -rm ~/$(CONFIG_DIR)/$(HERBSTLUFT) 48 -rm ~/$(CONFIG_DIR)/$(HERBSTLUFT)
41 -rm ~/$(COMPTON)
42 -rm ~/$(BASHRC) 49 -rm ~/$(BASHRC)
50 -rm ~/$(COMPTON)
51 -rm ~/$(LIQUIDPROMPT)
52 -rm ~/$(LP_PS1)
43 -rm ~/$(VIMRC) 53 -rm ~/$(VIMRC)
44 -rm ~/$(XRESOURCES) 54 -rm ~/$(XRESOURCES)