Skip to content

Instantly share code, notes, and snippets.

@pmav99
Created May 26, 2016 08:45
Show Gist options
  • Save pmav99/360b513ecde0ffaba913a05d9d99d7f1 to your computer and use it in GitHub Desktop.
Save pmav99/360b513ecde0ffaba913a05d9d99d7f1 to your computer and use it in GitHub Desktop.
makefile template
.PHONY: list
list:
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment