Revision bfef406e70c01d6541179e4d91f071698feee5b1 authored by Matthias J. Kannwischer on 29 May 2020, 05:32:17 UTC, committed by Ko- on 30 May 2020, 09:21:49 UTC
1 parent af4b38f
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