Last active
March 4, 2022 15:04
-
-
Save takahisa/264195778abccad74fe0a23bfe4de77d to your computer and use it in GitHub Desktop.
dotfilesをコピーするMakefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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