summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2015-10-04 04:57:14 +0200
committerAndrew Cady <d@jerkface.net>2015-10-04 04:57:14 +0200
commit5726bdeb174e5cb20463ef7ef3e74096cede7c60 (patch)
tree8d66408a3a5160d68171dd9a76c6fefeb509ebd7 /Makefile
parent29ec6fc29e8a94ca8106e8fd9e2218ae54a59a3a (diff)
ignore dotfiles (heh)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2250f8e..8767571 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) 5DOTFILES := $(shell find dot -type f -not -name '.*')
6 6
7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%) 7DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%)
8 8