comparison 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
comparison
equal deleted inserted replaced
342:481b55fc4b96 343:71345f4de3ce
1 #!/bin/bash
2 # list makefile targets
3 make -pn | grep '^ *[^#].*:.*' | sed 's/\([^:]+\):.*/\1/' | sort | uniq