blob: ce6e5adfa51db050cc3a477b241393bb62af04ac [file] [log] [blame]
wdenked9a2d32002-02-24 23:28:19 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenked9a2d32002-02-24 23:28:19 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenked9a2d32002-02-24 23:28:19 +00006#
7
Masahiro Yamada6825a952014-02-04 17:24:28 +09008#ccflags-y += -DDEBUG
wdenked9a2d32002-02-24 23:28:19 +00009
Simon Glass9b0e35c2015-01-19 22:16:07 -070010obj-y += checksum.o
Joe Hershberger5f967c02018-04-13 15:26:38 -050011obj-$(CONFIG_NET) += arp.o
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -050012obj-$(CONFIG_CMD_BOOTP) += bootp.o
Masahiro Yamada9cc11802013-10-17 17:35:00 +090013obj-$(CONFIG_CMD_CDP) += cdp.o
14obj-$(CONFIG_CMD_DNS) += dns.o
Simon Glassdb9391e2016-01-17 14:52:00 -070015ifdef CONFIG_DM_ETH
Joe Hershberger5f967c02018-04-13 15:26:38 -050016obj-$(CONFIG_NET) += eth-uclass.o
Simon Glassdb9391e2016-01-17 14:52:00 -070017else
Joe Hershberger5f967c02018-04-13 15:26:38 -050018obj-$(CONFIG_NET) += eth_legacy.o
Simon Glassdb9391e2016-01-17 14:52:00 -070019endif
Joe Hershberger5f967c02018-04-13 15:26:38 -050020obj-$(CONFIG_NET) += eth_common.o
Masahiro Yamada9cc11802013-10-17 17:35:00 +090021obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
Joe Hershberger5f967c02018-04-13 15:26:38 -050022obj-$(CONFIG_NET) += net.o
Masahiro Yamada9cc11802013-10-17 17:35:00 +090023obj-$(CONFIG_CMD_NFS) += nfs.o
24obj-$(CONFIG_CMD_PING) += ping.o
25obj-$(CONFIG_CMD_RARP) += rarp.o
26obj-$(CONFIG_CMD_SNTP) += sntp.o
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -050027obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
Tom Rini94443872017-05-10 15:26:06 -040028
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