Revision 8274c418ab5145c31d194edd4f9937a134a8f343 authored by Matthias J. Kannwischer on 04 June 2021, 08:24:25 UTC, committed by GitHub on 04 June 2021, 08:24:25 UTC
1 parent 5ebac3b
Raw File
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import M4Settings
from mupq import mupq


if __name__ == "__main__":
    mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
back to top