add new helper script

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21828 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-11-27 20:21:47 +00:00
parent 8fc0bf6030
commit 0c2fa7e599

View File

@ -0,0 +1,9 @@
#!/bin/bash
for i in "$@" ; do
echo "#include <$i>" > 1.cpp
inc='-I. -I/suse/usr/src/lyx/trunk/boost -I/usr/include/qt4/QtCore -I/usr/include/qt4'
g++ $inc -DQT_NO_STL -E 1.cpp | grep '^#' | cut -d '"' -f 2 | sort | uniq \
| grep -v '^[<#]' | grep -v '^1.cpp$'
#printf "%-40s: %d\n" $i $l
done