scripts/see-deps
author alpar
Wed, 09 Aug 2006 12:47:31 +0000
changeset 2169 9f71586a3f74
child 2170 42fffa713424
permissions -rwxr-xr-x
This script lists all the header files included directly or indirectly by a certain header file.
     1 #!/bin/bash
     2 
     3 echo '#include<'$1'>' >seedeps_tmp.cc
     4 gcc -MM -I. -I.. -I../.. $2 seedeps_tmp.cc|tr ':' ' '|tr '\' ' '|tr ' ' '\n'|
     5 egrep -v '^$'|egrep -v '.o$'|egrep -v '.cc$'|sort
     6 rm seedeps_tmp.cc