From ab49116f7af6062fb9a727483eab0dfd5d4a5e26 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Mon, 6 Mar 2023 16:45:27 -0500 Subject: [PATCH] Wip --- Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 868ebe9..734fe37 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,21 @@ BREWPATH ?= /opt/homebrew/bin BREW = $(BREWPATH)/brew +DOTS = $(BREWPATH)/dots # This does not work inside of a make command. bootstrap-homebrew: xcode-select --install || true source "$(PWD)/scripts/install-brew.sh" - chmod -R go-w $(brew --prefix) -bootstrap-minimal: bootstrap-homebrew - echo "Fix me" +install-dots: + "$(BREW)" tap m-housh/formula + "$(BREW)" install dots -bootstrap: - echo "fix me" +bootstrap-minimal: bootstrap-homebrew install-dots + "$(DOTS)" install --minimal + +bootstrap: bootstrap-homebrew + "$(DOTS)" install --full # make a local zsh configuration file, to extend # the normal .zshrc for configuration that is only