* Moved networking code into subsys/net. * Renamed net/yaip to net/ip at the same time. * Fixed the tests/net to compile * Fixed the Makefiles and Kconfig files in subsys/net to use the new location of the IP stack Change-Id: Ie45d9e8cb45a93fefdf969b20a81e3b1d3c16355 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
10 lines
149 B
Makefile
10 lines
149 B
Makefile
obj-$(CONFIG_NET_BUF) += buf.o
|
|
|
|
ifeq ($(CONFIG_NETWORKING),y)
|
|
ifeq ($(CONFIG_NET_L2_RAW_CHANNEL),y)
|
|
obj-y += ip/nbuf.o
|
|
else
|
|
obj-y += ip/
|
|
endif
|
|
endif
|