]> git.ipfire.org Git - thirdparty/u-boot.git/blame - net/Makefile
configs: Disable now unbuildable SPI options for boards
[thirdparty/u-boot.git] / net / Makefile
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
ed9a2d38 2#
f9328639 3# (C) Copyright 2000-2006
ed9a2d38 4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
ed9a2d38 5
6825a95b 6#ccflags-y += -DDEBUG
ed9a2d38 7
9b0e35cb 8obj-y += checksum.o
5f967c04 9obj-$(CONFIG_NET) += arp.o
d7a45eaf 10obj-$(CONFIG_CMD_BOOTP) += bootp.o
9cc1180c
MY
11obj-$(CONFIG_CMD_CDP) += cdp.o
12obj-$(CONFIG_CMD_DNS) += dns.o
db9391e1 13ifdef CONFIG_DM_ETH
5f967c04 14obj-$(CONFIG_NET) += eth-uclass.o
db9391e1 15else
5f967c04 16obj-$(CONFIG_NET) += eth_legacy.o
db9391e1 17endif
5f967c04 18obj-$(CONFIG_NET) += eth_common.o
9cc1180c 19obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
5f967c04 20obj-$(CONFIG_NET) += net.o
9cc1180c
MY
21obj-$(CONFIG_CMD_NFS) += nfs.o
22obj-$(CONFIG_CMD_PING) += ping.o
23obj-$(CONFIG_CMD_RARP) += rarp.o
24obj-$(CONFIG_CMD_SNTP) += sntp.o
d7a45eaf 25obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
f73a7df9 26obj-$(CONFIG_UDP_FUNCTION_FASTBOOT) += fastboot.o
d8970dae 27obj-$(CONFIG_CMD_WOL) += wol.o
94443878
TR
28
29# Disable this warning as it is triggered by:
30# sprintf(buf, index ? "foo%d" : "foo", index)
31# and this is intentional usage.
32CFLAGS_eth_common.o += -Wno-format-extra-args