1'''! Python scripts used by the PSCF makefile build system. '''
33 base = os.path.basename(cfile)
34 groups = base.split(
'.')
38 abspath = os.path.abspath(cfile)
39 relpath = os.path.relpath(abspath, srcdir)
40 reldir = os.path.dirname(relpath)
43 if (reldir !=
'.' and reldir !=
''):
44 blddir = os.path.normpath(os.path.join(blddir, reldir))
45 srcdir = os.path.normpath(os.path.join(srcdir, reldir))
50 pfile = os.path.normpath(os.path.join(srcdir, base)) +
'.p'
51 dfile = os.path.normpath(os.path.join(blddir, base)) +
'.d'
54 command = processor +
' '
55 command += pfile +
' '
56 command += options +
' '
62 editDepend(pfile, dfile, blddir, extraDependencies)
91 base = os.path.basename(cfile)
92 groups = base.split(
'.')
96 abspath = os.path.abspath(cfile)
97 relpath = os.path.relpath(abspath, srcdir)
98 reldir = os.path.dirname(relpath)
101 if (reldir !=
'.' and reldir !=
''):
102 blddir = os.path.normpath(os.path.join(blddir, reldir))
103 srcdir = os.path.normpath(os.path.join(srcdir, reldir))
108 pfile = os.path.normpath(os.path.join(srcdir, base)) +
'.p'
109 dfile = os.path.normpath(os.path.join(blddir, base)) +
'.d'
112 command = processor +
' '
113 command += options +
' '
115 command +=
' > ' + pfile
136 file = open(pfile,
'r')
137 lines = file.readlines()
141 groups = lines[0].split(
":")
146 base = os.path.basename(target)
147 target = os.path.normpath(os.path.join(blddir, base))
151 for i
in range(len(lines)):
159 text.append(target +
': ')
162 path = os.path.abspath(dep)
166 if extraDependencies:
167 deps = extraDependencies.split()
169 path = os.path.abspath(dep)
172 file = open(dfile,
'w')
173 file.write(str(text))
190 file = open(pfile,
'r')
191 lines = file.readlines()
195 groups = lines[0].split(
":")
200 base = os.path.basename(target)
201 target = os.path.normpath(os.path.join(blddir, base))
205 for i
in range(len(lines)):
213 text.append(target +
': ')
216 pair = [srcroot, dep]
217 if (os.path.commonprefix(pair) == srcroot):
218 path = os.path.abspath(dep)
222 if extraDependencies:
223 deps = extraDependencies.split()
225 path = os.path.abspath(dep)
228 file = open(dfile,
'w')
229 file.write(str(text))
247 def __init__(self, path = '.', pathFromSrc = '.', pathToSrc ='.', parent = None, isTest=False):
259 self.
root = parent.root
274 dirFilePath = self.
makePath(
'dir.txt')
275 if os.path.exists(dirFilePath):
276 file = open(dirFilePath,
'r')
286 if os.path.isdir(path):
292 pathToSrc =
'..' + os.sep + self.
pathToSrc
294 maker =
MakeMaker(path, pathFromSrc, pathToSrc, self,
True)
297 self.
dirs.append(maker)
299 def setGlobalInclude(self, text):
301 for dir
in self.
dirs:
302 dir.setGlobalInclude(text)
304 def setDefines(self, text):
306 for dir
in self.
dirs:
309 def addLibrary(self, libName, libObjs):
314 def setLinkObjs(self, text):
316 for dir
in self.
dirs:
317 dir.setLinkObjs(text)
320 ''' Make include line suitable for a makefile'''
322 return 'include $(SRC_DIR)' + os.sep + base +
'\n'
324 return 'include $(SRC_DIR)' + os.sep + self.
pathFromSrc + os.sep + base +
'\n'
327 ''' Return suffix for source files: cpp or cc '''
335 Find all header and source files in this directory.
336 Note: Does not recursively descend into subdirectories
341 for name
in os.listdir(self.
path):
344 if os.path.isfile(path):
345 base = os.path.basename(path)
346 groups = base.split(
'.')
358 for name
in os.listdir(self.
path):
361 if os.path.isfile(path):
362 base = os.path.basename(path)
363 groups = base.split(
'.')
369 self.
hdrs.append(base)
378 for dir
in self.
dirs:
386 if len(self.
dirs) > 0:
387 for dir
in self.
dirs:
388 basename = os.path.basename(dir.path)
389 if basename !=
'tests':
390 varpath = basename + os.sep +
'sources.mk'
404 wrapper.append(prefix +
'SRCS=')
405 for dir
in self.
dirs:
406 basename = os.path.basename(dir.path)
407 if basename !=
'tests':
408 wrapper.append(
'$(' + dir.dirname +
'_SRCS) ')
413 file.write(str(wrapper))
417 file.write(prefix +
'OBJS=$(')
418 file.write(prefix +
'SRCS:.' + self.
srcSuffix() +
'=.o)')
427 file.write(
'\t$(AR) rcs ' + self.
libName +
' ' + self.
libObjs +
'\n')
435 file = open(self.
makePath(
'makefile'),
'w')
436 file.write(
'SRC_DIR_REL =' + self.
pathToSrc +
'\n\n')
439 file.write(
'include $(SRC_DIR_REL)/test/sources.mk\n')
440 file.write(
'include sources.mk\n')
446 targets =
'$(' + objs +
')'
447 deps =
'$(' + objs +
':.o=.d)'
450 targets +=
' ' + base
451 file.write(
'all: ' + targets)
455 file.write(
'clean:\n\trm -f ' + targets +
' ' + deps)
459 file.write(
'clean-deps:\n\trm -f ' + deps)
463 file.write(base +
': ' + base +
'.o ' + self.
linkObjs +
'\n')
464 file.write(
'\t$(CXX) $(LDFLAGS) $(INCLUDES) $(DEFINES)')
465 file.write(
' -o ' + base +
' ' + base +
'.o \\\n')
466 file.write(
'\t ' + self.
linkObjs +
'\n\n')
468 file.write(
'-include ' + deps +
'\n\n')
471 def makePath(self, string):
473 return self.
path + os.sep + string
477 def makePathFromSrc(self, string):
483 def srcDirPath(self):
490 return os.sep.join(shifts)
497 def filenames(self, pattern = '*', recursive = 1):
498 r = glob.glob( self.
path +
'/' + pattern)
500 for dir
in self.
dirs:
501 r.extend(dir.filenames(pattern))
506 r.append( self.
path +
'\n' )
508 r.append( str(x) +
'\n' )
510 r.append( str(x) +
'\n' )
Class to construct makefile system for a set of source files.
find(self)
Find all header and source files in this directory.
makeInclude(self, base)
Make include line suitable for a makefile.
makePathFromSrc(self, string)
__init__(self, path='.', pathFromSrc='.', pathToSrc='.', parent=None, isTest=False)
Constructor.
srcSuffix(self)
Return suffix for source files: cpp or cc.
Class to wrap line breaks.
Utilities for manipulating files and paths.
open_w(path)
Open file with specified path for writing, return file object.
editDependLocal(pfile, dfile, blddir, srcroot, extraDependencies)
Edit the dependency file created for a CUDA file by the compiler.
editDepend(pfile, dfile, blddir, extraDependencies)
Edit the dependency file created for a C/C++ file by the compiler.
createDependencyFileCuda(processor, options, cfile, srcdir, blddir, extraDependencies='')
Create a *.d dependency file for a CUDA source file.
createDependencyFileCpp(processor, options, cfile, srcdir, blddir, extraDependencies='')
Create a *.d dependency file for a C/C++ source file.
Utilities for manipulating and searching text strings.
readLabelledList(file, label)
Read line of form "label = string", in which string may contains spaces.