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