1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/eeprom.h)
4
5zephyr_library()
6
7zephyr_library_sources_ifdef(CONFIG_USERSPACE eeprom_handlers.c)
8zephyr_library_sources_ifdef(CONFIG_EEPROM_SHELL eeprom_shell.c)
9
10zephyr_library_sources_ifdef(CONFIG_EEPROM_AT2X eeprom_at2x.c)
11zephyr_library_sources_ifdef(CONFIG_EEPROM_LPC11U6X eeprom_lpc11u6x.c)
12zephyr_library_sources_ifdef(CONFIG_EEPROM_STM32 eeprom_stm32.c)
13zephyr_library_sources_ifdef(CONFIG_EEPROM_SIMULATOR eeprom_simulator.c)
14zephyr_library_sources_ifdef(CONFIG_EEPROM_EMULATOR eeprom_emulator.c)
15zephyr_library_sources_ifdef(CONFIG_EEPROM_TMP116 eeprom_tmp116.c)
16zephyr_library_sources_ifdef(CONFIG_EEPROM_XEC eeprom_mchp_xec.c)
17zephyr_library_sources_ifdef(CONFIG_EEPROM_FAKE eeprom_fake.c)
18
19zephyr_library_sources_ifdef(CONFIG_EEPROM_AT2X_EMUL eeprom_at2x_emul.c)
20
21zephyr_library_sources_ifdef(CONFIG_EEPROM_MB85RCXX eeprom_mb85rcxx.c)
22