diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 17:31:59 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 17:31:59 +0200 |
commit | 178835c160940772341615dab7a239c45a875807 (patch) | |
tree | c732f59d48c41453cd8c28603ee61f3365fac773 /Makefile | |
parent | 8579b2a1023211c86cb1221eb2b44b9221034478 (diff) |
Add AM2320 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 am2320,${drivers}), ) + TARGETS += src/driver/am2320.cc + COMMON_FLAGS += -DDRIVER_AM2320 +endif + ifneq ($(findstring max44006,${drivers}), ) TARGETS += src/driver/max44006.cc COMMON_FLAGS += -DDRIVER_MAX44006 |