about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2021-09-05 12:06:19 -0500
committerCase Duckworth2021-09-05 12:07:10 -0500
commit01067990cce27b7af94506f583de025d28e31c1b (patch)
tree326acef39b1956003a2555ff405fe082098901a0 /Makefile
parentSearch multiple files for __git_ps1 function (diff)
downloadetc-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--Makefile10
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
3BOOTSTRAPS:=$(wildcard bootstrap/*)
4BOOTSTRAPS_OUT:=$(foreach b,$(BOOTSTRAPS),$(patsubst bootstrap/%,~/.%,$(b)))
5
6.PHONY: bootstrap
7bootstrap: $(BOOTSTRAPS_OUT)
8
9~/.%: bootstrap/%
10 ln -sf etc/$< $@