aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/shims/super/make
blob: 46de5313107fb43d6a64227a7c4185ef7b77298b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

if [[ -n "$HOMEBREW_MAKE" && "$HOMEBREW_MAKE" != "make" ]]
then
  export MAKE="$HOMEBREW_MAKE"
else
  MAKE="make"
fi
export HOMEBREW_CCCFG="O$HOMEBREW_CCCFG"
exec xcrun "$MAKE" "$@"