https://github.com/mupq/pqm4
Revision 8a1a4762c4508a2eaa7a29f899f1eac336d9e50c authored by Ko- on 24 September 2019, 07:19:14 UTC, committed by Ko- on 24 September 2019, 07:22:20 UTC
1 parent 8e662d7
Raw File
Tip revision: 8a1a4762c4508a2eaa7a29f899f1eac336d9e50c authored by Ko- on 24 September 2019, 07:19:14 UTC
Update LUOV to v2.1
Tip revision: 8a1a476
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