Skip to content

Instantly share code, notes, and snippets.

@takahisa
Last active March 4, 2022 15:04
Show Gist options
  • Save takahisa/264195778abccad74fe0a23bfe4de77d to your computer and use it in GitHub Desktop.
Save takahisa/264195778abccad74fe0a23bfe4de77d to your computer and use it in GitHub Desktop.
dotfilesをコピーするMakefile
EXCLUDE_PATTERNS := Makefile
SOURCES := $(filter-out $(EXCLUDE_PATTERNS), $(shell git ls-files))
TARGETS := $(addprefix $(HOME)/, $(SOURCES))
$(TARGETS): $(HOME)/% : $(PWD)/%
@cp $< $@
all: $(TARGETS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment