Skip to content

Instantly share code, notes, and snippets.

@rampion
Created April 9, 2009 12:46
Show Gist options
  • Save rampion/92442 to your computer and use it in GitHub Desktop.
Save rampion/92442 to your computer and use it in GitHub Desktop.
zsh function to recursively ascend the path tree until we hit root or find a makefile, then make
# zsh function to recursively ascend the path tree until we hit root or find a makefile, then make
function makeup()
{
if ([[ $PWD == "/" ]] || [[ -f Makefile ]] || [[ -f makefile ]] ) ; then
make $*
else
(pushd .. >/dev/null ; makeup $*)
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment