blob: e7764ce93279bbd76f149bbe0b4a64c549f2c1b2 [file] [log] [blame]
wdenked9a2d32002-02-24 23:28:19 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenked9a2d32002-02-24 23:28:19 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25
Robin Getz0ebf04c2009-07-23 03:01:03 -040026# CFLAGS += -DDEBUG
wdenked9a2d32002-02-24 23:28:19 +000027
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010028LIB = $(obj)libnet.o
wdenked9a2d32002-02-24 23:28:19 +000029
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000030COBJS-$(CONFIG_CMD_NET) += arp.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050031COBJS-$(CONFIG_CMD_NET) += bootp.o
Joe Hershbergerf575ae12012-05-23 07:57:59 +000032COBJS-$(CONFIG_CMD_CDP) += cdp.o
Robin Getz1a32bf42009-07-20 14:53:54 -040033COBJS-$(CONFIG_CMD_DNS) += dns.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050034COBJS-$(CONFIG_CMD_NET) += eth.o
Joe Hershbergerd22c3382012-05-23 08:00:12 +000035COBJS-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050036COBJS-$(CONFIG_CMD_NET) += net.o
37COBJS-$(CONFIG_CMD_NFS) += nfs.o
Joe Hershbergera36b12f2012-05-23 07:58:02 +000038COBJS-$(CONFIG_CMD_PING) += ping.o
Peter Tyserbf6cb242010-09-30 11:25:48 -050039COBJS-$(CONFIG_CMD_RARP) += rarp.o
Mike Frysinger638ed3e2009-02-05 21:04:47 -050040COBJS-$(CONFIG_CMD_SNTP) += sntp.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050041COBJS-$(CONFIG_CMD_NET) += tftp.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020042
Joe Hershbergerd22c3382012-05-23 08:00:12 +000043COBJS := $(sort $(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020044SRCS := $(COBJS:.o=.c)
45OBJS := $(addprefix $(obj),$(COBJS))
46
wdenked9a2d32002-02-24 23:28:19 +000047all: $(LIB)
48
Marian Balakowiczf9328632006-09-01 19:49:50 +020049$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010050 $(call cmd_link_o_target, $(OBJS))
wdenked9a2d32002-02-24 23:28:19 +000051
52#########################################################################
53
Marian Balakowiczf9328632006-09-01 19:49:50 +020054# defines $(obj).depend target
55include $(SRCTREE)/rules.mk
wdenked9a2d32002-02-24 23:28:19 +000056
Marian Balakowiczf9328632006-09-01 19:49:50 +020057sinclude $(obj).depend
wdenked9a2d32002-02-24 23:28:19 +000058
59#########################################################################