blob: 0544f6bacd02c4e32138c6042637ff18c88698a2 [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
Mike Frysinger6ac59c52009-11-03 11:35:42 -050030COBJS-$(CONFIG_CMD_NET) += bootp.o
Robin Getz1a32bf42009-07-20 14:53:54 -040031COBJS-$(CONFIG_CMD_DNS) += dns.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050032COBJS-$(CONFIG_CMD_NET) += eth.o
33COBJS-$(CONFIG_CMD_NET) += net.o
34COBJS-$(CONFIG_CMD_NFS) += nfs.o
Peter Tyserbf6cb242010-09-30 11:25:48 -050035COBJS-$(CONFIG_CMD_RARP) += rarp.o
Mike Frysinger638ed3e2009-02-05 21:04:47 -050036COBJS-$(CONFIG_CMD_SNTP) += sntp.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050037COBJS-$(CONFIG_CMD_NET) += tftp.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020038
Grant Likelyf0037c52007-09-24 09:05:30 -060039COBJS := $(COBJS-y)
Marian Balakowiczf9328632006-09-01 19:49:50 +020040SRCS := $(COBJS:.o=.c)
41OBJS := $(addprefix $(obj),$(COBJS))
42
wdenked9a2d32002-02-24 23:28:19 +000043all: $(LIB)
44
Marian Balakowiczf9328632006-09-01 19:49:50 +020045$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010046 $(call cmd_link_o_target, $(OBJS))
wdenked9a2d32002-02-24 23:28:19 +000047
48#########################################################################
49
Marian Balakowiczf9328632006-09-01 19:49:50 +020050# defines $(obj).depend target
51include $(SRCTREE)/rules.mk
wdenked9a2d32002-02-24 23:28:19 +000052
Marian Balakowiczf9328632006-09-01 19:49:50 +020053sinclude $(obj).depend
wdenked9a2d32002-02-24 23:28:19 +000054
55#########################################################################