diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-08 15:45:32 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-08 15:45:32 +0200 |
commit | f4b31b88508892ca781ebb14716dc322e868b6db (patch) | |
tree | 11ffb6fa4d8ce8c8821ea10fa62b17cd0d7f0024 /Makefile | |
parent | e7f1024732ee9bac13fbf2e2439106f9f3577db7 (diff) |
Add 24LC64 EEPROM driver
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,11 @@ ifneq ($(findstring am2320,${drivers}), ) COMMON_FLAGS += -DDRIVER_AM2320 endif +ifneq ($(findstring eeprom24lc64,${drivers}), ) + TARGETS += src/driver/eeprom24lc64.cc + COMMON_FLAGS += -DDRIVER_EEPROM24LC64 +endif + ifneq ($(findstring max44006,${drivers}), ) TARGETS += src/driver/max44006.cc COMMON_FLAGS += -DDRIVER_MAX44006 |