zephyr/subsys/Makefile
Leandro Pereira adce1d1888 subsys: Add random subsystem
Some "random" drivers are not drivers at all: they just implement the
function `sys_rand32_get()`.  Move those to a random subsystem in
preparation for a reorganization.

Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
2017-11-01 08:26:29 -04:00

13 lines
357 B
Makefile

obj-$(CONFIG_FILE_SYSTEM) += fs/
obj-$(CONFIG_USB) += usb/
obj-$(CONFIG_BT) += bluetooth/
obj-$(CONFIG_NET_BUF) += net/
obj-$(CONFIG_CONSOLE_SHELL) += shell/
obj-$(CONFIG_CONSOLE_PULL) += console/
obj-$(CONFIG_DISK_ACCESS) += disk/
obj-$(CONFIG_CPLUSPLUS) += cpp/
obj-$(CONFIG_MCUBOOT_IMG_MANAGER) += dfu/
obj-y += logging/
obj-y += debug/
obj-y += random/