I want to use cscope in emacs. Due to my directory structure i only want to use files from certain subdirectories in the tree. In the shell i create my cscope.files list (includes a listing of all the source files i want) the i do:
cscope -q -R -b -i cscope.files
This will create the cscope.out file i want. Now i want to read this file into emacs to use it for source code parsing etc ...
So the question is: How do i have emacs load it? It seems that all the options i get (ie M-x cscope-wahtever) are for creating a new cscope.out file.