17 lines
230 B
Python
Executable file
17 lines
230 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import os as _os
|
|
import argparse as _argparse
|
|
|
|
|
|
def main():
|
|
argument_parser = _argparse.ArgumentParser(
|
|
)
|
|
args = argument_parser.parse_args()
|
|
|
|
if True:
|
|
_os.system("make -f tools/makefile")
|
|
|
|
|
|
main()
|