summaryrefslogtreecommitdiff
path: root/examples/usercmodule/cexample/micropython.mk
blob: d6801dac0ba5b76f53995d172b8ac3be5a60f612 (plain)
1
2
3
4
5
6
7
8
CEXAMPLE_MOD_DIR := $(USERMOD_DIR)

# Add all C files to SRC_USERMOD.
SRC_USERMOD += $(CEXAMPLE_MOD_DIR)/examplemodule.c

# We can add our module folder to include paths if needed
# This is not actually needed in this example.
CFLAGS_USERMOD += -I$(CEXAMPLE_MOD_DIR)