diff options
Diffstat (limited to '_mbsetupuser/Brewfile.org')
| -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. |
