13 lines
229 B
Makefile
13 lines
229 B
Makefile
# build a minimal interpreter
|
|
PROG = micropython-minimal
|
|
|
|
FROZEN_MANIFEST =
|
|
|
|
MICROPY_PY_BTREE = 0
|
|
MICROPY_PY_FFI = 0
|
|
MICROPY_PY_SOCKET = 0
|
|
MICROPY_PY_THREAD = 0
|
|
MICROPY_PY_TERMIOS = 0
|
|
MICROPY_PY_USSL = 0
|
|
MICROPY_USE_READLINE = 0
|