diff options
author | Case Duckworth | 2021-09-05 12:06:19 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-05 12:07:10 -0500 |
commit | 01067990cce27b7af94506f583de025d28e31c1b (patch) | |
tree | 326acef39b1956003a2555ff405fe082098901a0 /Makefile | |
parent | Search multiple files for __git_ps1 function (diff) | |
download | etc-01067990cce27b7af94506f583de025d28e31c1b.tar.gz etc-01067990cce27b7af94506f583de025d28e31c1b.zip |
Change bootstrapping method
Now uses a script, ./bootstrap.sh, and a file, ./bootstrap.manifest.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 712877b..0000000 --- a/Makefile +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | # ~/etc/ Makefile | ||
2 | |||
3 | BOOTSTRAPS:=$(wildcard bootstrap/*) | ||
4 | BOOTSTRAPS_OUT:=$(foreach b,$(BOOTSTRAPS),$(patsubst bootstrap/%,~/.%,$(b))) | ||
5 | |||
6 | .PHONY: bootstrap | ||
7 | bootstrap: $(BOOTSTRAPS_OUT) | ||
8 | |||
9 | ~/.%: bootstrap/% | ||
10 | ln -sf etc/$< $@ | ||