We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5368210 commit d976e4fCopy full SHA for d976e4f
1 file changed
ports/teensy/Makefile
@@ -98,10 +98,6 @@ STM_SRC_C = $(addprefix ports/stm32/,\
98
pin_named_pins.c \
99
)
100
101
-STM_SRC_S = $(addprefix ports/stm32/,\
102
- gchelper.s \
103
- )
104
-
105
LIB_SRC_C = $(addprefix lib/,\
106
libc/string0.c \
107
mp-readline/readline.c \
@@ -120,8 +116,9 @@ SRC_TEENSY = $(addprefix core/,\
120
116
yield.c \
121
117
122
118
123
-OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(STM_SRC_C:.c=.o) $(STM_SRC_S:.s=.o) $(SRC_TEENSY:.c=.o))
119
+OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(STM_SRC_C:.c=.o) $(SRC_TEENSY:.c=.o))
124
OBJ += $(addprefix $(BUILD)/, $(LIB_SRC_C:.c=.o))
+OBJ += $(BUILD)/lib/utils/gchelper_m3.o
125
OBJ += $(BUILD)/pins_gen.o
126
127
all: hex
0 commit comments