summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2015-10-04 15:02:32 +0200
committerAndrew Cady <d@jerkface.net>2015-10-04 15:02:32 +0200
commitfeaa8c4a217c6eab78ec1bce3b01e1b751057237 (patch)
tree78de282755acaa4503371572a2ef59e43ec01701 /Makefile
parentbca86ee72d24fdef653043cf59125bb1bd38e8e3 (diff)
also install symlinks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8767571..369564f 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ ifndef HOME
2$(error "$$HOME" must be defined) 2$(error "$$HOME" must be defined)
3endif 3endif
4 4
5DOTFILES := $(shell find dot -type f -not -name '.*') 5DOTFILES := $(shell find dot \( -type f -o -type l \) -not -name '.*')
6 6
7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%) 7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%)
8 8