https://github.com/mupq/pqm4
Revision 4b9c6e38ec027504ff994c6fe3ad67f285f9ff34 authored by Matthias J. Kannwischer on 15 May 2019, 06:52:48 UTC, committed by Matthias J. Kannwischer on 15 May 2019, 06:52:48 UTC
1 parent 188fd79
Raw File
Tip revision: 4b9c6e38ec027504ff994c6fe3ad67f285f9ff34 authored by Matthias J. Kannwischer on 15 May 2019, 06:52:48 UTC
change ntruhrss701 back to clean
Tip revision: 4b9c6e3
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