diff bin/make-targets.sh @ 343:71345f4de3ce

programs to list make targets
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 23 Jun 2013 12:54:11 -0700
parents
children d4403d13fb31
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/make-targets.sh	Sun Jun 23 12:54:11 2013 -0700
@@ -0,0 +1,3 @@
+#!/bin/bash
+# list makefile targets
+make -pn | grep '^ *[^#].*:.*' | sed 's/\([^:]+\):.*/\1/' | sort | uniq
\ No newline at end of file