diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 08:29:05 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 08:29:05 +0100 |
commit | 4436c14ab688ca57fc82c1fd68f2f366fa131de1 (patch) | |
tree | 3b930d1285fe8255b9adc13cda37ccf190e069a8 /Makefile | |
parent | 0d84f5e512c4148bc45dd26eea177e09c0a21b56 (diff) |
add mmsimple driver
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -14,6 +14,11 @@ ifneq ($(findstring lm75,${drivers}), ) COMMON_FLAGS += -DDRIVER_LM75 endif +ifneq ($(findstring mmsimple,${drivers}), ) + TARGETS += src/driver/mmsimple.cc + COMMON_FLAGS += -DDRIVER_MMSIMPLE +endif + ifneq ($(findstring sharp96,${drivers}), ) TARGETS += src/driver/sharp96.cc COMMON_FLAGS += -DDRIVER_SHARP6 |