aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-16 12:33:44 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit6b0ced7200b380cc05b8bed2c2da324dc6bb4442 (patch)
treeff7df7852cc1d9acb106ee33e62563e940ea1f8d
parent2f21368ee9631cfbd864d645b0a8322ee6c6bad8 (diff)
downloadnew-dotfiles-6b0ced7200b380cc05b8bed2c2da324dc6bb4442.tar.gz
new-dotfiles-6b0ced7200b380cc05b8bed2c2da324dc6bb4442.zip
macos: Add alias for make
I'm getting tired of having to type gmake all the time.
-rw-r--r--_mbsetupuser/Brewfile.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/_mbsetupuser/Brewfile.org b/_mbsetupuser/Brewfile.org
index 5766489..9d63df5 100644
--- a/_mbsetupuser/Brewfile.org
+++ b/_mbsetupuser/Brewfile.org
@@ -40,7 +40,6 @@ Then I need some things for configuration and development purposes:
#+begin_src ruby
brew "git"
brew "stow"
- brew "make"
cask "tailscale-app"
cask "hammerspoon"
brew "fennel"
@@ -49,6 +48,18 @@ Then I need some things for configuration and development purposes:
cask "bettercmdtab"
#+end_src
+Install make because the bundled version is really old and doesn't support some of the features that I used. Surprisingly it /is/ GNU make, not BSD make that's installed.
+
+#+begin_src ruby
+ brew "make"
+#+end_src
+
+This requires an alias in ZSH to make sure that the newly installed make is actually used.
+
+#+begin_src sh :tangle .config/zsh/conf.d/macos.sh
+ alias make=gmake
+#+end_src
+
And there are some development projects that I need to be able to install.
- docker :: This runs all of my development projects.