Created
April 9, 2009 12:46
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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