summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-10-18 10:38:48 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2019-10-18 10:38:48 +0200
commite391c1bc244838bb050ade946e709f671cd9cf94 (patch)
treef3b5e0260f95f886f54be213098f3362b7f8c815 /Makefile
parent8e0cde61737f46ba492768d86c54cff998da07a1 (diff)
Add preliminary version of HDC1080 driver (not working reliably yet)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5e0f2bc..0a33696 100644
--- a/Makefile
+++ b/Makefile
@@ -63,6 +63,11 @@ ifneq ($(findstring max44009,${drivers}), )
COMMON_FLAGS += -DDRIVER_MAX44009
endif
+ifneq ($(findstring hdc1080,${drivers}), )
+ CXX_TARGETS += src/driver/hdc1080.cc
+ COMMON_FLAGS += -DDRIVER_HDC1080
+endif
+
ifneq ($(findstring mmsimple,${drivers}), )
CXX_TARGETS += src/driver/mmsimple.cc
COMMON_FLAGS += -DDRIVER_MMSIMPLE