blob: d249c042301e517d2ad03a8b52d4448ae7497d03 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
3# Copyright (C) 1999-2002 Erik Andersen <andersee@debian.org>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18#
19
20NETWORKING_AR:=networking.a
21ifndef $(NETWORKING_DIR)
22NETWORKING_DIR:=$(TOPDIR)networking/
23endif
24
25NETWORKING-y:=
26NETWORKING-$(CONFIG_HOSTNAME) += hostname.o
27NETWORKING-$(CONFIG_IFCONFIG) += ifconfig.o
Glenn L McGrath021fa7d2002-11-09 09:34:15 +000028NETWORKING-$(CONFIG_IFUPDOWN) += ifupdown.o
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000029NETWORKING-$(CONFIG_IP) += ip.o
30NETWORKING-$(CONFIG_NC) += nc.o
Eric Andersen85208e22002-04-12 12:05:57 +000031NETWORKING-$(CONFIG_NETSTAT) += netstat.o
32NETWORKING-$(CONFIG_NSLOOKUP) += nslookup.o
33NETWORKING-$(CONFIG_PING) += ping.o
Eric Andersen51b8bd62002-07-03 11:46:38 +000034NETWORKING-$(CONFIG_PING6) += ping6.o
Eric Andersen85208e22002-04-12 12:05:57 +000035NETWORKING-$(CONFIG_ROUTE) += route.o
36NETWORKING-$(CONFIG_TELNET) += telnet.o
Eric Andersen08a72202002-09-30 20:52:10 +000037NETWORKING-$(CONFIG_TELNETD) += telnetd.o
Eric Andersen85208e22002-04-12 12:05:57 +000038NETWORKING-$(CONFIG_TFTP) += tftp.o
39NETWORKING-$(CONFIG_TRACEROUTE) += traceroute.o
Eric Andersen85208e22002-04-12 12:05:57 +000040NETWORKING-$(CONFIG_WGET) += wget.o
41
42libraries-y+=$(NETWORKING_DIR)$(NETWORKING_AR)
43
44$(NETWORKING_DIR)$(NETWORKING_AR): $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
45 $(AR) -ro $@ $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
46