mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
347 B
Python
Executable File
20 lines
347 B
Python
Executable File
#!/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
|
|
|
|
import gc
|
|
|
|
if __name__ == '__main__':
|
|
gc.disable()
|
|
|
|
pymake.command.main(sys.argv[1:], os.environ, os.getcwd(), cb=sys.exit)
|
|
pymake.process.ParallelContext.spin()
|
|
assert False, "Not reached"
|