zephyr/drivers/net/Makefile
Michael Hope 82118c712f net: fix the build rules for drivers/net.
The Makefile was using the obj-$FOO = form instead of the ob-$FOO +=
form, so if both slip and loopback are enabled then only loopback will
get built.

Signed-off-by: Michael Hope <mlhx@google.com>
2017-11-06 10:24:05 +02:00

3 lines
70 B
Makefile

obj-$(CONFIG_SLIP) += slip.o
obj-$(CONFIG_NET_LOOPBACK) += loopback.o