Blame view

net/Makefile 1.06 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  # SPDX-License-Identifier: GPL-2.0+
ed9a2d38d   wdenk   Initial revision
2
  #
f93286397   Marian Balakowicz   Add support for a...
3
  # (C) Copyright 2000-2006
ed9a2d38d   wdenk   Initial revision
4
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
ed9a2d38d   wdenk   Initial revision
5

6825a95b0   Masahiro Yamada   kbuild: use Linux...
6
  #ccflags-y += -DDEBUG
ed9a2d38d   wdenk   Initial revision
7

5f967c049   Joe Hershberger   net: Make core ne...
8
  obj-$(CONFIG_NET)      += arp.o
d7a45eafd   Joe Hershberger   net: Make CMD_NET...
9
  obj-$(CONFIG_CMD_BOOTP) += bootp.o
9cc1180c3   Masahiro Yamada   net: convert a ma...
10
11
  obj-$(CONFIG_CMD_CDP)  += cdp.o
  obj-$(CONFIG_CMD_DNS)  += dns.o
db9391e16   Simon Glass   net: Move driver-...
12
  ifdef CONFIG_DM_ETH
5f967c049   Joe Hershberger   net: Make core ne...
13
  obj-$(CONFIG_NET)      += eth-uclass.o
db9391e16   Simon Glass   net: Move driver-...
14
  else
5f967c049   Joe Hershberger   net: Make core ne...
15
  obj-$(CONFIG_NET)      += eth_legacy.o
db9391e16   Simon Glass   net: Move driver-...
16
  endif
c3452b50c   Alex Marginean   net: introduce MD...
17
  obj-$(CONFIG_DM_MDIO)  += mdio-uclass.o
8880edba0   Alex Marginean   net: add MDIO_MUX...
18
  obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o
5f967c049   Joe Hershberger   net: Make core ne...
19
  obj-$(CONFIG_NET)      += eth_common.o
9cc1180c3   Masahiro Yamada   net: convert a ma...
20
  obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
5f967c049   Joe Hershberger   net: Make core ne...
21
  obj-$(CONFIG_NET)      += net.o
9cc1180c3   Masahiro Yamada   net: convert a ma...
22
23
  obj-$(CONFIG_CMD_NFS)  += nfs.o
  obj-$(CONFIG_CMD_PING) += ping.o
3eaac6307   Ramon Fried   net: introduce pa...
24
  obj-$(CONFIG_CMD_PCAP) += pcap.o
9cc1180c3   Masahiro Yamada   net: convert a ma...
25
26
  obj-$(CONFIG_CMD_RARP) += rarp.o
  obj-$(CONFIG_CMD_SNTP) += sntp.o
d7a45eafd   Joe Hershberger   net: Make CMD_NET...
27
  obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
f73a7df98   Alex Kiernan   net: fastboot: Me...
28
  obj-$(CONFIG_UDP_FUNCTION_FASTBOOT)  += fastboot.o
d8970dae2   Lothar Felten   net: Add new wol ...
29
  obj-$(CONFIG_CMD_WOL)  += wol.o
dd38c3336   Alex Marginean   net: introduce DS...
30
  obj-$(CONFIG_DM_DSA)   += dsa-uclass.o
944438783   Tom Rini   net: Disable the ...
31
32
33
34
35
  
  # Disable this warning as it is triggered by:
  # sprintf(buf, index ? "foo%d" : "foo", index)
  # and this is intentional usage.
  CFLAGS_eth_common.o += -Wno-format-extra-args