summaryrefslogtreecommitdiffstats
path: root/net/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:14 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:14 +0200
commitc3bb685cd835a0a3585dbe013adde150f4731c98 (patch)
tree9ff360bac8d69f74d642076174d1ddda177d090c /net/Makefile
parent75f79f014c52ec6ad286c014aa5ba4881de3c0f6 (diff)
downloadbarebox-c3bb685cd835a0a3585dbe013adde150f4731c98.tar.gz
barebox-c3bb685cd835a0a3585dbe013adde150f4731c98.tar.xz
svn_rev_020
update Makefiles to kbuild
Diffstat (limited to 'net/Makefile')
-rw-r--r--net/Makefile54
1 files changed, 7 insertions, 47 deletions
diff --git a/net/Makefile b/net/Makefile
index d18460cab3..1fb5bed7ed 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -1,47 +1,7 @@
-#
-# (C) Copyright 2000-2006
-# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
-#
-# See file CREDITS for list of people who contributed to this
-# project.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
-# MA 02111-1307 USA
-#
-
-include $(TOPDIR)/config.mk
-
-# CFLAGS += -DET_DEBUG -DDEBUG
-
-LIB = $(obj)libnet.a
-
-COBJS = net.o tftp.o bootp.o rarp.o eth.o nfs.o sntp.o
-
-SRCS := $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(COBJS))
-
-all: $(LIB)
-
-$(LIB): $(obj).depend $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################
+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