Skip to content

Instantly share code, notes, and snippets.

@jussi-kalliokoski
Created March 30, 2012 19:55
Show Gist options
  • Save jussi-kalliokoski/2254461 to your computer and use it in GitHub Desktop.
Save jussi-kalliokoski/2254461 to your computer and use it in GitHub Desktop.
sudo make me a sandwich
NOOP := rm -f
me:
@$(NOOP)
a:
@$(NOOP)
sandwich:
@if [ `whoami` = "root" ]; then echo "one sandwich coming right up!"; else echo "hah, make me!"; fi
.PHONY: me a sandwich
@nddrylliog
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment