diff options
| author | 2026-07-16 12:33:44 -0700 | |
|---|---|---|
| committer | 2026-07-16 12:37:23 -0700 | |
| commit | 30452d7ff90666d8e3fa774649a59317d8ea9122 (patch) | |
| tree | 39b23ebf91d6952ea55eef14c54a2d94539bcf05 | |
| parent | de237449b21d44d8946ebaa28465b5abd1f494ee (diff) | |
| download | new-dotfiles-30452d7ff90666d8e3fa774649a59317d8ea9122.tar.gz new-dotfiles-30452d7ff90666d8e3fa774649a59317d8ea9122.zip | |
macos: Add alias for make
I'm getting tired of having to type gmake all the time.
| -rw-r--r-- | _mbsetupuser/Brewfile.org | 13 |
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. |
