Created
February 23, 2017 08:31
-
-
Save ttencate/958f2cc6f38925d83f7b7e0a8aa7ccce to your computer and use it in GitHub Desktop.
The best Makefile ever
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
ifeq ($(MAKECMDGOALS),me a sandwich) | |
.PHONY: me a sandwich | |
me a: | |
@true | |
sandwich: | |
@if [[ $$(id -u) == "0" ]]; then \ | |
echo "Okay."; \ | |
else \ | |
echo "What? Make it yourself."; \ | |
false; \ | |
fi | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment