summaryrefslogtreecommitdiff
path: root/py/circuitpy_defns.mk
diff options
context:
space:
mode:
authorJames Bowman <jamesb@excamera.com>2020-02-03 16:46:14 -0800
committerJames Bowman <jamesb@excamera.com>2020-02-03 16:46:14 -0800
commit7fd30e7d2067bc0d94a57bd44519a59469a9f08b (patch)
tree0bec391a1fcded1bbff59bc8f621c6fef3991fbd /py/circuitpy_defns.mk
parent67440acd3eebe0776acd3babd854a48de76771a3 (diff)
First draft of eveL, the low-level module of the Gameduino (and BridgeTek EVE) bindings.
[adafruit/circuitpython#2578]
Diffstat (limited to 'py/circuitpy_defns.mk')
-rw-r--r--py/circuitpy_defns.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk
index 1f2d6c73e..859d3837b 100644
--- a/py/circuitpy_defns.mk
+++ b/py/circuitpy_defns.mk
@@ -157,6 +157,9 @@ endif
ifeq ($(CIRCUITPY_MATH),1)
SRC_PATTERNS += math/%
endif
+ifeq ($(CIRCUITPY_EVEL),1)
+SRC_PATTERNS += eveL/%
+endif
ifeq ($(CIRCUITPY_MICROCONTROLLER),1)
SRC_PATTERNS += microcontroller/%
endif
@@ -298,6 +301,7 @@ $(filter $(SRC_PATTERNS), \
fontio/Glyph.c \
microcontroller/RunMode.c \
math/__init__.c \
+ eveL/__init__.c \
)
SRC_BINDINGS_ENUMS += \