blob: 526468718a4ac0399a689a492a825de4c2db6681 [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
Joe Hershbergereafc8db2012-05-23 07:57:58 +000037COBJS-$(CONFIG_BOOTP_RANDOM_DELAY) += net_rand.o
Joe Hershbergerd22c3382012-05-23 08:00:12 +000038COBJS-$(CONFIG_CMD_LINK_LOCAL) += net_rand.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050039COBJS-$(CONFIG_CMD_NFS) += nfs.o
Joe Hershbergera36b12f2012-05-23 07:58:02 +000040COBJS-$(CONFIG_CMD_PING) += ping.o
Peter Tyserbf6cb242010-09-30 11:25:48 -050041COBJS-$(CONFIG_CMD_RARP) += rarp.o
Mike Frysinger638ed3e2009-02-05 21:04:47 -050042COBJS-$(CONFIG_CMD_SNTP) += sntp.o
Mike Frysinger6ac59c52009-11-03 11:35:42 -050043COBJS-$(CONFIG_CMD_NET) += tftp.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020044
Joe Hershbergerd22c3382012-05-23 08:00:12 +000045COBJS := $(sort $(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020046SRCS := $(COBJS:.o=.c)
47OBJS := $(addprefix $(obj),$(COBJS))
48
wdenked9a2d32002-02-24 23:28:19 +000049all: $(LIB)
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010052 $(call cmd_link_o_target, $(OBJS))
wdenked9a2d32002-02-24 23:28:19 +000053
54#########################################################################
55
Marian Balakowiczf9328632006-09-01 19:49:50 +020056# defines $(obj).depend target
57include $(SRCTREE)/rules.mk
wdenked9a2d32002-02-24 23:28:19 +000058
Marian Balakowiczf9328632006-09-01 19:49:50 +020059sinclude $(obj).depend
wdenked9a2d32002-02-24 23:28:19 +000060
61#########################################################################