]> Git Repo - u-boot.git/blame - net/Makefile
net: add MDIO_MUX DM class
[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, [email protected].
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
c3452b50 18obj-$(CONFIG_DM_MDIO) += mdio-uclass.o
8880edba 19obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o
5f967c04 20obj-$(CONFIG_NET) += eth_common.o
9cc1180c 21obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
5f967c04 22obj-$(CONFIG_NET) += net.o
9cc1180c
MY
23obj-$(CONFIG_CMD_NFS) += nfs.o
24obj-$(CONFIG_CMD_PING) += ping.o
25obj-$(CONFIG_CMD_RARP) += rarp.o
26obj-$(CONFIG_CMD_SNTP) += sntp.o
d7a45eaf 27obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
f73a7df9 28obj-$(CONFIG_UDP_FUNCTION_FASTBOOT) += fastboot.o
d8970dae 29obj-$(CONFIG_CMD_WOL) += wol.o
94443878
TR
30
31# Disable this warning as it is triggered by:
32# sprintf(buf, index ? "foo%d" : "foo", index)
33# and this is intentional usage.
34CFLAGS_eth_common.o += -Wno-format-extra-args
This page took 0.273771 seconds and 4 git commands to generate.