INNER CODE UNIT · Python
buildPrepInstall
ecere/ecere-sdk · setup.py:60
def buildPrepInstall():
print('buildPrepInstall')
call(['echo', 'buildPrepInstall'], shell=True)
proc = subprocess.Popen(['make', 'prepinstall'], shell=False)
proc.communicate()
call(['dir', path.join('obj', 'win32', 'bin')], shell=True)
return proc.returncode == 0
def buildPyPrepInstall():
print('buildPyPrepInstall')
call(['echo', 'buildPyPrepInstall'], shell=True)
proc = subprocess.Popen(['make', 'py_prepinstall'], shell=False)
proc.communicate()
call(['dir', path.join('obj', 'win32', 'bin')], shell=True)
return proc.returncode == 0
def buildBindingsC():
print('buildBindingsC')