summaryrefslogtreecommitdiffstats
path: root/common_features.mk
diff options
context:
space:
mode:
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk
index 6f02dbac6..3d3b8506e 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -246,11 +246,21 @@ endif
ifeq ($(strip $(HAPTIC_ENABLE)), DRV2605L)
COMMON_VPATH += $(DRIVER_PATH)/haptic
+ SRC += haptic.c
SRC += DRV2605L.c
SRC += i2c_master.c
+ OPT_DEFS += -DHAPTIC_ENABLE
OPT_DEFS += -DDRV2605L
endif
+ifeq ($(strip $(HAPTIC_ENABLE)), SOLENOID)
+ COMMON_VPATH += $(DRIVER_PATH)/haptic
+ SRC += haptic.c
+ SRC += solenoid.c
+ OPT_DEFS += -DHAPTIC_ENABLE
+ OPT_DEFS += -DSOLENOID_ENABLE
+endif
+
ifeq ($(strip $(HD44780_ENABLE)), yes)
SRC += drivers/avr/hd44780.c
OPT_DEFS += -DHD44780_ENABLE