]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/Makefile
arcv2: Set IOC aperture so it covers available DDR
[people/ms/u-boot.git] / net / Makefile
CommitLineData
ed9a2d38 1#
f9328639 2# (C) Copyright 2000-2006
ed9a2d38
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
ed9a2d38
WD
6#
7
6825a95b 8#ccflags-y += -DDEBUG
ed9a2d38 9
9b0e35cb 10obj-y += checksum.o
9cc1180c
MY
11obj-$(CONFIG_CMD_NET) += arp.o
12obj-$(CONFIG_CMD_NET) += bootp.o
13obj-$(CONFIG_CMD_CDP) += cdp.o
14obj-$(CONFIG_CMD_DNS) += dns.o
db9391e1
SG
15ifdef CONFIG_DM_ETH
16obj-$(CONFIG_CMD_NET) += eth-uclass.o
17else
c4998f96 18obj-$(CONFIG_CMD_NET) += eth_legacy.o
db9391e1 19endif
818f91eb 20obj-$(CONFIG_CMD_NET) += eth_common.o
9cc1180c
MY
21obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
22obj-$(CONFIG_CMD_NET) += net.o
23obj-$(CONFIG_CMD_NFS) += nfs.o
24obj-$(CONFIG_CMD_PING) += ping.o
25obj-$(CONFIG_CMD_RARP) += rarp.o
26obj-$(CONFIG_CMD_SNTP) += sntp.o
27obj-$(CONFIG_CMD_NET) += tftp.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