summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-03-11 18:01:07 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2020-03-11 18:01:07 +0100
commita929c3cf4d98ee5e17def528ab99e27335dfa539 (patch)
tree8e186a5227bb7d62e3b547b60c1cda489cd82b3f /Makefile
parentd90a84032348f63f8b45b718939a0e957169b8a8 (diff)
Add S5851A temperature sensor driver
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f3dea51..d008049 100644
--- a/Makefile
+++ b/Makefile
@@ -33,6 +33,11 @@ ifneq ($(findstring lm75,${drivers}), )
COMMON_FLAGS += -DDRIVER_LM75
endif
+ifneq ($(findstring s5851a,${drivers}), )
+ CXX_TARGETS += src/driver/s5851a.cc
+ COMMON_FLAGS += -DDRIVER_S5851A
+endif
+
ifneq ($(findstring am2320,${drivers}), )
CXX_TARGETS += src/driver/am2320.cc
COMMON_FLAGS += -DDRIVER_AM2320