Skip to content

Instantly share code, notes, and snippets.

@syl20bnr
Created May 22, 2013 15:46
Show Gist options
  • Save syl20bnr/5628614 to your computer and use it in GitHub Desktop.
Save syl20bnr/5628614 to your computer and use it in GitHub Desktop.
List rules of a Makefile.
#!/bin/sh
make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment