зеркало из https://github.com/mozilla/pjs.git
15 строки
301 B
Python
15 строки
301 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
make.py
|
||
|
|
||
|
A drop-in or mostly drop-in replacement for GNU make.
|
||
|
"""
|
||
|
|
||
|
import sys, os
|
||
|
import pymake.command, pymake.process
|
||
|
|
||
|
pymake.command.main(sys.argv[1:], os.environ, os.getcwd(), context=None, cb=sys.exit)
|
||
|
pymake.process.ParallelContext.spin()
|
||
|
assert False, "Not reached"
|