15 lines
639 B
Plaintext
15 lines
639 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
cd $CRGS
|
||
|
|
find /usr/include/c++/4.8.5/ > icpp.temp
|
||
|
|
# find /iPlature/include -name "*.h" -o -name "*.hpp" >iPlatureCflag.temp
|
||
|
|
# find /iHyperDB/library/lib36/include -name "*.h" -o -name "*.hpp" >ihdb.temp
|
||
|
|
find -name "*.cpp" -o -name "*.cxx" -o -name "*.h" -o -name "*.hpp" -o -name "*.hxx" >list.temp
|
||
|
|
ctags -R --c++-kinds=+p --fields=+iaS --extra=+q -L icpp.temp
|
||
|
|
ctags -R --c++-kinds=+p --fields=+iaS --extra=+q -L list.temp
|
||
|
|
# ctags -R --c++-kinds=+p --fields=+iaS --extra=+q -L ihdb.temp
|
||
|
|
# ctags -R --c++-kinds=+p --fields=+iaS --extra=+q -L iPlatureCflag.temp
|
||
|
|
rm list.temp
|
||
|
|
# rm ihdb.temp
|
||
|
|
# rm iPlatureCflag.temp
|
||
|
|
rm icpp.temp
|