mirror of
https://github.com/micropython/micropython.git
synced 2025-09-01 23:40:34 +02:00
This makes no difference when files are linked directly into a target application, but on macOS additional steps are needed to index common symbols in static libraries. See https://stackoverflow.com/a/26581710 By not creating any common symbols, this problem is bypassed. This will also trigger linker errors if there are cases where the same symbol is defined in the host application. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <angus@redyak.com.au>
26 lines
686 B
Makefile
26 lines
686 B
Makefile
# This file is part of the MicroPython project, http://micropython.org/
|
|
# The MIT License (MIT)
|
|
# Copyright (c) 2022-2023 Damien P. George
|
|
#
|
|
# This is a very simple makefile that demonstrates how to build the embed port.
|
|
# All it needs to do is build all *.c files in the micropython_embed directory.
|
|
# This makefile would be replaced with your custom build system.
|
|
|
|
EMBED_DIR = micropython_embed
|
|
PROG = embed
|
|
|
|
CFLAGS += -I.
|
|
CFLAGS += -I$(EMBED_DIR)
|
|
CFLAGS += -I$(EMBED_DIR)/port
|
|
CFLAGS += -Wall -Og -fno-common
|
|
|
|
SRC += main.c
|
|
SRC += $(wildcard $(EMBED_DIR)/*/*.c) $(wildcard $(EMBED_DIR)/*/*/*.c)
|
|
OBJ += $(SRC:.c=.o)
|
|
|
|
$(PROG): $(OBJ)
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
/bin/rm -f $(OBJ) $(PROG)
|