summaryrefslogtreecommitdiffstats
path: root/net/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:23 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:23 +0200
commit11a0b5a0dd5f092777de41db00f3ffa8a95d698c (patch)
tree519db270d85dbbab4dab0928ed43a0c156436093 /net/Makefile
parent3533c30ef469bd5e6ff1f715fcaae4a64066e612 (diff)
downloadbarebox-11a0b5a0dd5f092777de41db00f3ffa8a95d698c.tar.gz
barebox-11a0b5a0dd5f092777de41db00f3ffa8a95d698c.tar.xz
svn_rev_108
removed ifdefs, moved ping to own file, fix timeout handler
Diffstat (limited to 'net/Makefile')
-rw-r--r--net/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/net/Makefile b/net/Makefile
index 1fb5bed7ed..c100e4ffe2 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -1,7 +1,8 @@
-obj-y += bootp.o
-obj-y += eth.o
-obj-y += net.o
-obj-y += nfs.o
-obj-y += rarp.o
-obj-y += sntp.o
-obj-y += tftp.o
+obj-$(CONFIG_NET) += bootp.o
+obj-$(CONFIG_NET) += eth.o
+obj-$(CONFIG_NET) += net.o
+obj-$(CONFIG_NET_NFS) += nfs.o
+obj-$(CONFIG_NET_RARP) += rarp.o
+obj-$(CONFIG_NET_SNTP) += sntp.o
+obj-$(CONFIG_NET_TFTP) += tftp.o
+obj-$(CONFIG_NET_PING) += ping.o