summaryrefslogtreecommitdiff
path: root/net/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2009-12-17 22:59:27 +0100
committerWolfgang Denk <wd@denx.de>2009-12-17 22:59:27 +0100
commitb6535daefd65c93ea429bc4728062379dda6e482 (patch)
tree2ba6d227112143d5e522a2aca72a85671e08bd55 /net/Makefile
parente5e4e705ce402856a4800ebf4c0cc163d41b58b0 (diff)
parent1ab70f6fff9fa3b7910c11b874f625e004256c50 (diff)
downloadu-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.zip
u-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.tar.gz
u-boot-imx-b6535daefd65c93ea429bc4728062379dda6e482.tar.bz2
Merge branch 'next' of git://git.denx.de/u-boot-net
Diffstat (limited to 'net/Makefile')
-rw-r--r--net/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/Makefile b/net/Makefile
index ff87d87..4f819dd 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -27,14 +27,14 @@ include $(TOPDIR)/config.mk
LIB = $(obj)libnet.a
-COBJS-y += bootp.o
+COBJS-$(CONFIG_CMD_NET) += bootp.o
COBJS-$(CONFIG_CMD_DNS) += dns.o
-COBJS-y += eth.o
-COBJS-y += net.o
-COBJS-y += nfs.o
-COBJS-y += rarp.o
+COBJS-$(CONFIG_CMD_NET) += eth.o
+COBJS-$(CONFIG_CMD_NET) += net.o
+COBJS-$(CONFIG_CMD_NFS) += nfs.o
+COBJS-$(CONFIG_CMD_NET) += rarp.o
COBJS-$(CONFIG_CMD_SNTP) += sntp.o
-COBJS-y += tftp.o
+COBJS-$(CONFIG_CMD_NET) += tftp.o
COBJS := $(COBJS-y)
SRCS := $(COBJS:.o=.c)