mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
A script can now be imported in the console. Moved all the MicroPython functions to python/port files. Change-Id: I0a23e8cb20005719b800e81470e1c574c702c3b7
26 lines
475 B
Makefile
26 lines
475 B
Makefile
snapshots += Code::App::Snapshot
|
|
snapshot_headers += apps/code/app.h
|
|
|
|
app_objs += $(addprefix apps/code/,\
|
|
app.o\
|
|
console_controller.o\
|
|
console_edit_cell.o\
|
|
console_line_cell.o\
|
|
console_store.o\
|
|
editor_controller.o\
|
|
menu_controller.o\
|
|
script.o\
|
|
script_parameter_controller.o\
|
|
script_store.o\
|
|
)
|
|
|
|
i18n_files += $(addprefix apps/code/,\
|
|
base.de.i18n\
|
|
base.en.i18n\
|
|
base.es.i18n\
|
|
base.fr.i18n\
|
|
base.pt.i18n\
|
|
)
|
|
|
|
app_images += apps/code/code_icon.png
|