summaryrefslogtreecommitdiff
path: root/esp8266/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'esp8266/Makefile')
-rw-r--r--esp8266/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 00370a519..90392cd49 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -125,9 +125,16 @@ SRC_COMMON_HAL = \
time/__init__.c \
board/__init__.c
+# These don't have corresponding files in each port but are still located in
+# shared-bindings to make it clear what the contents of the modules are.
+SRC_BINDINGS_ENUMS = \
+ digitalio/Direction.c \
+ digitalio/DriveMode.c \
+ digitalio/Pull.c
+
SRC_COMMON_HAL_EXPANDED = $(addprefix shared-bindings/, $(SRC_COMMON_HAL)) \
+ $(addprefix shared-bindings/, $(SRC_BINDINGS_ENUMS)) \
$(addprefix common-hal/, $(SRC_COMMON_HAL))
-
SRC_SHARED_MODULE = \
bitbangio/__init__.c \
bitbangio/I2C.c \