mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 00:42:50 +00:00
Shim layer interfacing between crypto APIs and TinyCrypt library. Currently facilitates only a subset of TinyCrypt features/algorithms. Jira: ZEP-509 Change-Id: I7fe6b9d86df016d92d717378d08a1ab09caafb31 Signed-off-by: Jithu Joseph <jithu.joseph@intel.com>
32 lines
933 B
Makefile
32 lines
933 B
Makefile
subdir-ccflags-y += -I$(srctree)/include/drivers
|
|
|
|
obj-y = console/
|
|
obj-y += random/
|
|
obj-y += serial/
|
|
obj-$(CONFIG_SYS_CLOCK_EXISTS) += timer/
|
|
obj-y += interrupt_controller/
|
|
obj-$(CONFIG_GROVE) += grove/
|
|
obj-$(CONFIG_PCI) += pci/
|
|
obj-$(CONFIG_BLUETOOTH) += bluetooth/
|
|
obj-$(CONFIG_SHARED_IRQ) += shared_irq/
|
|
obj-$(CONFIG_SPI) += spi/
|
|
obj-$(CONFIG_FLASH) += flash/
|
|
obj-$(CONFIG_COUNTER) += counter/
|
|
obj-$(CONFIG_GPIO) += gpio/
|
|
obj-$(CONFIG_I2C) += i2c/
|
|
obj-$(CONFIG_PWM) += pwm/
|
|
obj-$(CONFIG_ADC) += adc/
|
|
obj-$(CONFIG_NET_L2_ETHERNET) += ethernet/
|
|
obj-$(CONFIG_SLIP) += slip/
|
|
obj-$(CONFIG_IEEE802154) += ieee802154/
|
|
obj-$(CONFIG_WATCHDOG) += watchdog/
|
|
obj-$(CONFIG_RTC) += rtc/
|
|
obj-$(CONFIG_CLOCK_CONTROL) += clock_control/
|
|
obj-$(CONFIG_IPM) += ipm/
|
|
obj-$(CONFIG_SENSOR) += sensor/
|
|
obj-$(CONFIG_AIO_COMPARATOR) += aio/
|
|
obj-$(CONFIG_PINMUX) += pinmux/
|
|
obj-$(CONFIG_DMA) += dma/
|
|
obj-$(CONFIG_USB) += usb/
|
|
obj-$(CONFIG_CRYPTO) += crypto/
|