https://github.com/mupq/pqm4
Revision 56417d9f69737c033715dab4957436bdfef91589 authored by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC, committed by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC
1 parent cb2caa2
Raw File
Tip revision: 56417d9f69737c033715dab4957436bdfef91589 authored by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC
clean-up interface
Tip revision: 56417d9
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