diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-11-03 21:57:26 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-11-03 21:57:26 +0100 |
commit | d9f91aa068be7e7a743b533a00380a81eeb618df (patch) | |
tree | a097fd0e52c41d32562cce7bf164e564334cf492 | |
parent | e29396274d61e25928905405bc40d117d5e7e749 (diff) |
Makefile: add ds2482 compilation switch
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -72,6 +72,10 @@ ifdef CONFIG_driver_ccs811 CXX_TARGETS += src/driver/ccs811.cc endif +ifdef CONFIG_driver_ds2482 + CXX_TARGETS += src/driver/ds2482.cc +endif + ifdef CONFIG_driver_eeprom24lc64 CXX_TARGETS += src/driver/eeprom24lc64.cc endif |