summaryrefslogtreecommitdiffstats
path: root/dotfiles2.mk
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-03 21:21:21 +0100
committerGravatar Tom Willemse2013-11-03 21:21:21 +0100
commit5c6cd059e8395d7f24d4b199e59c8c2f562dc438 (patch)
tree2e108e0724b5f5248de11c515312fa8c7c04ab4c /dotfiles2.mk
parentcca8771d855a3c8ba67bcb43a45967d9e4b6dd15 (diff)
downloaddotfiles-5c6cd059e8395d7f24d4b199e59c8c2f562dc438.tar.gz
dotfiles-5c6cd059e8395d7f24d4b199e59c8c2f562dc438.zip
New stow hierarchy
Diffstat (limited to 'dotfiles2.mk')
-rw-r--r--dotfiles2.mk17
1 files changed, 0 insertions, 17 deletions
diff --git a/dotfiles2.mk b/dotfiles2.mk
deleted file mode 100644
index 521b06d..0000000
--- a/dotfiles2.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-DESTDIR?=$(HOME)
-DESTDIR:=$(DESTDIR)/$(SUBDIR)
-
-RSYNC=rsync
-RFLAGS=--links --perms --times --group --owner --dirs --verbose \
- --update --delete --exclude=Makefile --exclude=.gitignore \
- $(addprefix --exclude=,$(EXCLUDE))
-
-install-modules=$(addprefix install-,$(MODULES))
-
-install: $(install-modules)
- @echo "Syncing $(CURDIR)/ with $(DESTDIR)"
- @$(RSYNC) $(RFLAGS) $(CURDIR)/ $(DESTDIR)
- @echo
-
-$(install-modules): install-%:
- @DESTDIR=$(DESTDIR) $(MAKE) -s -C $* install