aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-04 01:24:17 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-04 01:24:17 +1300
commitc43d68cd0855ac6f77ebb1ae50501debafb75a0c (patch)
treede2c032cb20ab3cf1aee955cfa66706727aaffda /Makefile
parentBreak x target up a bit (diff)
downloaddotfiles-c43d68cd0855ac6f77ebb1ae50501debafb75a0c.tar.gz
dotfiles-c43d68cd0855ac6f77ebb1ae50501debafb75a0c.zip
Tidy some dir creation rules
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index eb609033..baba279d 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,9 @@ install : install-bash \
install-vim-plugins
install-bash : test-bash
- install -m 0755 -d -- "$(HOME)"/.config "$(HOME)"/.bashrc.d
+ install -m 0755 -d -- \
+ "$(HOME)"/.config \
+ "$(HOME)"/.bashrc.d
install -m 0644 -- bash/bashrc "$(HOME)"/.bashrc
install -m 0644 -- bash/bashrc.d/* "$(HOME)"/.bashrc.d
install -m 0644 -- bash/bash_profile "$(HOME)"/.bash_profile
@@ -30,7 +32,9 @@ install-bash : test-bash
install -m 0644 -- bash/bash_completion "$(HOME)"/.config/bash_completion
install-bin : test-bin
- install -m 0755 -d -- "$(HOME)"/.local/bin "$(HOME)"/.local/share/man/man1
+ install -m 0755 -d -- \
+ "$(HOME)"/.local/bin \
+ "$(HOME)"/.local/share/man/man1
install -m 0755 -- bin/* "$(HOME)"/.local/bin
install -m 0644 -- man/* "$(HOME)"/.local/share/man/man1