aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e233395..0e0dd70 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,12 @@ NUMIX = .local/share/themes/numix-no-title
2BASHRC = .bashrc 2BASHRC = .bashrc
3VIMRC = .vimrc 3VIMRC = .vimrc
4HERBSTLUFT = .config/herbstluftwm 4HERBSTLUFT = .config/herbstluftwm
5XRESOURCES = .Xresources
6
5 7
6install: all 8install: all
7 9
8all: bash vim numix-no-title herbstluftwm 10all: bash vim xresources numix-no-title herbstluftwm
9 11
10numix-no-title: 12numix-no-title:
11 #create wm theme dir if not exist 13 #create wm theme dir if not exist
@@ -35,9 +37,14 @@ vim:
35 #copy vimrc to home 37 #copy vimrc to home
36 cp -f $(VIMRC) ~ 38 cp -f $(VIMRC) ~
37 39
40xresources:
41 #copy Xresources to home
42 cp -f $(XRESOURCES) ~
43
38uninstall: 44uninstall:
39 #remove all 45 #remove all
40 -rm -rf ~/$(WM-THEME-DIR) 46 -rm -rf ~/$(WM-THEME-DIR)
41 -rm -rf ~/$(HERBSTLUFT) 47 -rm -rf ~/$(HERBSTLUFT)
42 -rm -f ~/$(BASHRC) 48 -rm -f ~/$(BASHRC)
43 -rm -f ~/$(VIMRC) 49 -rm -f ~/$(VIMRC)
50 -rm -f ~/$(XRESOURCES)