https://github.com/mupq/pqm4
Revision 94230ecf6d65e51a39bb1a5da0449002bc4fe838 authored by Matthias J. Kannwischer on 16 May 2019, 08:21:04 UTC, committed by Matthias J. Kannwischer on 16 May 2019, 08:21:04 UTC
1 parent d99fe32
Raw File
Tip revision: 94230ecf6d65e51a39bb1a5da0449002bc4fe838 authored by Matthias J. Kannwischer on 16 May 2019, 08:21:04 UTC
properly check for errors for signatures
Tip revision: 94230ec
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