all: Update to point to files in new shared/ directory.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2021-07-09 14:19:15 +10:00
parent 4d546713ec
commit 136369d72f
141 changed files with 324 additions and 306 deletions

View File

@@ -39,9 +39,9 @@ SRC_C = \
modpyb.c \
modpybled.c \
modpybswitch.c \
lib/utils/pyexec.c \
lib/utils/sys_stdio_mphal.c \
lib/mp-readline/readline.c \
shared/runtime/pyexec.c \
shared/runtime/sys_stdio_mphal.c \
shared/readline/readline.c \
SRC_S = \
# gchelper.s \

View File

@@ -34,8 +34,8 @@
#include "py/gc.h"
#include "py/mphal.h"
#include "py/mperrno.h"
#include "lib/utils/pyexec.h"
#include "lib/mp-readline/readline.h"
#include "shared/runtime/pyexec.h"
#include "shared/readline/readline.h"
#include "board.h"
#include "modpyb.h"