8000 stmhal: pyexec.c is common module, move to lib/utils/ . · micropython/micropython@0ec5144 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0ec5144

Browse files
author
Paul Sokolovsky
committed
stmhal: pyexec.c is common module, move to lib/utils/ .
1 parent 731f359 commit 0ec5144

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

esp8266/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ SRC_C = \
6868

6969
STM_SRC_C = $(addprefix stmhal/,\
7070
printf.c \
71-
pyexec.c \
7271
pybstdio.c \
7372
)
7473

@@ -77,6 +76,7 @@ LIB_SRC_C = $(addprefix lib/,\
7776
mp-readline/readline.c \
7877
netutils/netutils.c \
7978
timeutils/timeutils.c \
79+
utils/pyexec.c \
8080
)
8181

8282
SRC_S = \
File renamed without changes.

minimal/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ SRC_C = \
4545
uart_core.c \
4646
uart_extra.c \
4747
stmhal/printf.c \
48-
stmhal/pyexec.c \
48+
lib/utils/pyexec.c \
4949
lib/libc/string0.c \
5050
lib/mp-readline/readline.c \
5151

pic16bit/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ SRC_C = \
4141
modpybled.c \
4242
modpybswitch.c \
4343
stmhal/pybstdio.c \
44-
stmhal/pyexec.c \
44+
lib/utils/pyexec.c \
4545
lib/mp-readline/readline.c \
4646

4747
SRC_S = \

stmhal/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ SRC_LIB = $(addprefix lib/,\
103103
mp-readline/readline.c \
104104
netutils/netutils.c \
105105
timeutils/timeutils.c \
106+
utils/pyexec.c \
106107
)
107108

108109
SRC_C = \
@@ -132,7 +133,6 @@ SRC_C = \
132133
printf.c \
133134
gccollect.c \
134135
pybstdio.c \
135-
pyexec.c \
136136
help.c \
137137
input.c \
138138
modmachine.c \

teensy/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ STM_SRC_C = $(addprefix stmhal/,\
9999
pin.c \
100100
pin_named_pins.c \
101101
printf.c \
102-
pyexec.c \
103102
pybstdio.c \
104103
)
105104

@@ -110,6 +109,7 @@ STM_SRC_S = $(addprefix stmhal/,\
110109
LIB_SRC_C = $(addprefix lib/,\
111110
libc/string0.c \
112111
mp-readline/readline.c \
112+
utils/pyexec.c \
113113
)
114114

115115
SRC_TEENSY = $(addprefix core/,\

0 commit comments

Comments
 (0)
0