DOTFILES := $(shell find dot -type f) ifndef HOME $(error "$$HOME" must be defined) endif DESTINATIONS = $(DOTFILES:dot/%=${HOME}/.%) $(HOME)/.%: dot/% install -D -m 0644 $< $@ install: $(DESTINATIONS)