summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/net/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/roms/u-boot/net/Makefile')
-rw-r--r--qemu/roms/u-boot/net/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/net/Makefile b/qemu/roms/u-boot/net/Makefile
new file mode 100644
index 000000000..942595021
--- /dev/null
+++ b/qemu/roms/u-boot/net/Makefile
@@ -0,0 +1,21 @@
+#
+# (C) Copyright 2000-2006
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+#ccflags-y += -DDEBUG
+
+obj-$(CONFIG_CMD_NET) += arp.o
+obj-$(CONFIG_CMD_NET) += bootp.o
+obj-$(CONFIG_CMD_CDP) += cdp.o
+obj-$(CONFIG_CMD_DNS) += dns.o
+obj-$(CONFIG_CMD_NET) += eth.o
+obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
+obj-$(CONFIG_CMD_NET) += net.o
+obj-$(CONFIG_CMD_NFS) += nfs.o
+obj-$(CONFIG_CMD_PING) += ping.o
+obj-$(CONFIG_CMD_RARP) += rarp.o
+obj-$(CONFIG_CMD_SNTP) += sntp.o
+obj-$(CONFIG_CMD_NET) += tftp.o