1import os.path 2 3 4TOOL_ROOT = os.path.normcase( 5 os.path.abspath( 6 os.path.dirname( # c-analyzer/ 7 os.path.dirname(__file__)))) # cpython/ 8REPO_ROOT = ( 9 os.path.dirname( # .. 10 os.path.dirname(TOOL_ROOT))) # Tools/ 11 12INCLUDE_DIRS = [os.path.join(REPO_ROOT, name) for name in [ 13 'Include', 14]] 15SOURCE_DIRS = [os.path.join(REPO_ROOT, name) for name in [ 16 'Python', 17 'Parser', 18 'Objects', 19 'Modules', 20]] 21