diff options
| author | Damien George <damien@micropython.org> | 2021-07-13 15:56:41 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-07-13 15:58:39 +1000 |
| commit | 240888a0d2caa2e8ac8518c7ce0743ddec7e2a84 (patch) | |
| tree | c0d80c6202bde6be8623fe61e84a64caa5b5a628 | |
| parent | 831cc4a61da2d5958858d8e1016e951fb248a882 (diff) | |
unix/Makefile: Add back LIB_SRC_C to list of object files.
This fixes the dev build (it needs LIB_SRC_C for Bluetooth) which was
broken by 136369d72f5b99ec23c9c9f178a590bde968e2ee.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | ports/unix/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/unix/Makefile b/ports/unix/Makefile index faa978f3f..36b6322d8 100644 --- a/ports/unix/Makefile +++ b/ports/unix/Makefile @@ -255,6 +255,7 @@ OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o)) OBJ += $(addprefix $(BUILD)/, $(SRC_CXX:.cpp=.o)) OBJ += $(addprefix $(BUILD)/, $(SHARED_SRC_C:.c=.o)) OBJ += $(addprefix $(BUILD)/, $(EXTMOD_SRC_C:.c=.o)) +OBJ += $(addprefix $(BUILD)/, $(LIB_SRC_C:.c=.o)) # List of sources for qstr extraction SRC_QSTR += $(SRC_C) $(SRC_CXX) $(SHARED_SRC_C) $(EXTMOD_SRC_C) |
