Skip to content

Instantly share code, notes, and snippets.

@gene1wood
Last active April 8, 2019 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gene1wood/884a74bbaf862d47def4a4c209663bc0 to your computer and use it in GitHub Desktop.
Save gene1wood/884a74bbaf862d47def4a4c209663bc0 to your computer and use it in GitHub Desktop.
make example Makefile showing the order that targets are resolved
foraker: elbert rainier
@echo "foraker"
elbert:
@echo "elbert"
rainier: blanca
@echo "rainier"
blanca:
@echo "blanca"
# Result of calling `make foraker`
#elbert
#blanca
#rainier
#foraker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment