blob: 1775f1864ef8709099fc71e2b7846c81cdc5bfbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#! /usr/bin/python
# Generate list of files to index with cscope.
# From the m5 directory, run:
# util/cscope-find.py > cscope.files
# cscope -b
import os
# absolute paths to skip
skipdirs = [ 'src/unittest', 'src/doxygen' ]
# suffixes of files to index
suffixes = [ '.cc', '.hh', '.c', '.h' ]
def oksuffix(f):
for s in suffixes:
if f.endswith(s):
return True
return False
for dirpath,subdirs,files in os.walk('src'):
# filter out undesirable subdirectories
for i,dir in enumerate(subdirs):
if dir == 'SCCS':
del subdirs[i]
break
# filter out undesriable absolute paths
if dirpath in skipdirs:
del subdirs[:]
continue
# find C/C++ sources
okfiles = [f for f in files if oksuffix(f)]
if okfiles:
print '\n'.join([os.path.join(dirpath, f) for f in okfiles])
|