Skip to content

Instantly share code, notes, and snippets.

@Pinjasaur
Last active September 29, 2017 21:23
Show Gist options
  • Save Pinjasaur/8e1ad2000afbaaa9ac7047397f93e2d2 to your computer and use it in GitHub Desktop.
Save Pinjasaur/8e1ad2000afbaaa9ac7047397f93e2d2 to your computer and use it in GitHub Desktop.
All about dem Makefiles.

Make

Automatic variables

  • $@ first name of target
  • $< first prereq
  • $? all prereqs newer than target (space delimitted)
  • $^ all prereqs (space delimitted)

Special targets

  • .PHONY run recipe regardless of if target exists
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment