summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--cc3200/application.mk2
-rw-r--r--cc3200/bootmgr/bootloader.mk8
-rw-r--r--esp8266/Makefile2
-rw-r--r--lib/libc/string0.c (renamed from stmhal/string0.c)0
-rw-r--r--minimal/Makefile2
-rw-r--r--stmhal/Makefile2
-rw-r--r--teensy/Makefile2
7 files changed, 11 insertions, 7 deletions
diff --git a/cc3200/application.mk b/cc3200/application.mk
index 70d072e8f6..58f377eae4 100644
--- a/cc3200/application.mk
+++ b/cc3200/application.mk
@@ -139,6 +139,7 @@ APP_MAIN_SRC_C = \
serverstask.c
APP_LIB_SRC_C = $(addprefix lib/,\
+ libc/string0.c \
fatfs/ff.c \
mp-readline/readline.c \
)
@@ -154,7 +155,6 @@ APP_STM_SRC_C = $(addprefix stmhal/,\
printf.c \
pyexec.c \
pybstdio.c \
- string0.c \
)
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(APP_FATFS_SRC_C:.c=.o) $(APP_RTOS_SRC_C:.c=.o) $(APP_FTP_SRC_C:.c=.o) $(APP_HAL_SRC_C:.c=.o) $(APP_MISC_SRC_C:.c=.o))
diff --git a/cc3200/bootmgr/bootloader.mk b/cc3200/bootmgr/bootloader.mk
index c7c7b05ef0..877ffa878b 100644
--- a/cc3200/bootmgr/bootloader.mk
+++ b/cc3200/bootmgr/bootloader.mk
@@ -66,11 +66,15 @@ BOOT_PY_SRC_C = $(addprefix py/,\
BOOT_STM_SRC_C = $(addprefix stmhal/,\
printf.c \
- string0.c \
)
-
+
+BOOT_LIB_SRC_C = $(addprefix lib/,\
+ libc/string0.c \
+ )
+
OBJ = $(addprefix $(BUILD)/, $(BOOT_HAL_SRC_C:.c=.o) $(BOOT_SL_SRC_C:.c=.o) $(BOOT_CC3100_SRC_C:.c=.o) $(BOOT_UTIL_SRC_C:.c=.o) $(BOOT_MISC_SRC_C:.c=.o))
OBJ += $(addprefix $(BUILD)/, $(BOOT_MAIN_SRC_C:.c=.o) $(BOOT_MAIN_SRC_S:.s=.o) $(BOOT_PY_SRC_C:.c=.o) $(BOOT_STM_SRC_C:.c=.o))
+OBJ += $(addprefix $(BUILD)/, $(BOOT_LIB_SRC_C:.c=.o)
# Add the linker script
LINKER_SCRIPT = bootmgr/bootmgr.lds
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 0728e8a56d..1909e0d76e 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -52,12 +52,12 @@ SRC_C = \
STM_SRC_C = $(addprefix stmhal/,\
printf.c \
- string0.c \
pyexec.c \
pybstdio.c \
)
LIB_SRC_C = $(addprefix lib/,\
+ libc/string0.c \
mp-readline/readline.c \
)
diff --git a/stmhal/string0.c b/lib/libc/string0.c
index b73a5e9ea9..b73a5e9ea9 100644
--- a/stmhal/string0.c
+++ b/lib/libc/string0.c
diff --git a/minimal/Makefile b/minimal/Makefile
index 592911516d..09adfd4fd3 100644
--- a/minimal/Makefile
+++ b/minimal/Makefile
@@ -45,8 +45,8 @@ SRC_C = \
uart_core.c \
uart_extra.c \
stmhal/printf.c \
- stmhal/string0.c \
stmhal/pyexec.c \
+ lib/libc/string0.c \
lib/mp-readline/readline.c \
SRC_S = \
diff --git a/stmhal/Makefile b/stmhal/Makefile
index e9235a7444..0ec0cf32b9 100644
--- a/stmhal/Makefile
+++ b/stmhal/Makefile
@@ -62,6 +62,7 @@ endif
#LIBS += $(shell $(CC) -print-libgcc-file-name)
SRC_LIB = $(addprefix lib/,\
+ libc/string0.c \
libm/math.c \
libm/asinfacosf.c \
libm/atanf.c \
@@ -94,7 +95,6 @@ SRC_LIB = $(addprefix lib/,\
SRC_C = \
main.c \
- string0.c \
system_stm32f4xx.c \
stm32f4xx_it.c \
usbd_conf.c \
diff --git a/teensy/Makefile b/teensy/Makefile
index 1c896c390f..4e97cbc6a9 100644
--- a/teensy/Makefile
+++ b/teensy/Makefile
@@ -101,7 +101,6 @@ STM_SRC_C = $(addprefix stmhal/,\
printf.c \
pyexec.c \
pybstdio.c \
- string0.c \
)
STM_SRC_S = $(addprefix stmhal/,\
@@ -109,6 +108,7 @@ STM_SRC_S = $(addprefix stmhal/,\
)
LIB_SRC_C = $(addprefix lib/,\
+ libc/string0.c \
mp-readline/readline.c \
)