blob: 7748d066b5d1b00978126d5775b4a5d0fd65ec38 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
Eric Andersencb81e642003-07-14 21:21:08 +00003# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +00004#
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:=
Glenn L McGrath9e598412003-01-09 10:06:01 +000026NETWORKING-$(CONFIG_ARPING) += arping.o
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000027NETWORKING-$(CONFIG_FTPGET) += ftpgetput.o
28NETWORKING-$(CONFIG_FTPPUT) += ftpgetput.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000029NETWORKING-$(CONFIG_HOSTNAME) += hostname.o
Glenn L McGrath58c708a2003-01-05 04:01:56 +000030NETWORKING-$(CONFIG_HTTPD) += httpd.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000031NETWORKING-$(CONFIG_IFCONFIG) += ifconfig.o
32NETWORKING-$(CONFIG_IFUPDOWN) += ifupdown.o
Glenn L McGrath06e95652003-02-09 06:51:14 +000033NETWORKING-$(CONFIG_INETD) += inetd.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000034NETWORKING-$(CONFIG_IP) += ip.o
35NETWORKING-$(CONFIG_IPCALC) += ipcalc.o
36NETWORKING-$(CONFIG_IPADDR) += ipaddr.o
37NETWORKING-$(CONFIG_IPLINK) += iplink.o
38NETWORKING-$(CONFIG_IPROUTE) += iproute.o
39NETWORKING-$(CONFIG_IPTUNNEL) += iptunnel.o
Glenn L McGrathf03c9332002-12-13 00:01:44 +000040NETWORKING-$(CONFIG_NAMEIF) += nameif.o
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000041NETWORKING-$(CONFIG_NC) += nc.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000042NETWORKING-$(CONFIG_NETSTAT) += netstat.o
43NETWORKING-$(CONFIG_NSLOOKUP) += nslookup.o
Eric Andersen85208e22002-04-12 12:05:57 +000044NETWORKING-$(CONFIG_PING) += ping.o
Eric Andersen51b8bd62002-07-03 11:46:38 +000045NETWORKING-$(CONFIG_PING6) += ping6.o
Eric Andersen85208e22002-04-12 12:05:57 +000046NETWORKING-$(CONFIG_ROUTE) += route.o
47NETWORKING-$(CONFIG_TELNET) += telnet.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000048NETWORKING-$(CONFIG_TELNETD) += telnetd.o
Eric Andersen85208e22002-04-12 12:05:57 +000049NETWORKING-$(CONFIG_TFTP) += tftp.o
Glenn L McGrathf112daa2002-12-01 23:04:06 +000050NETWORKING-$(CONFIG_TRACEROUTE) += traceroute.o
Eric Andersen853c4942003-01-23 05:59:32 +000051NETWORKING-$(CONFIG_VCONFIG) += vconfig.o
Eric Andersen85208e22002-04-12 12:05:57 +000052NETWORKING-$(CONFIG_WGET) += wget.o
53
54libraries-y+=$(NETWORKING_DIR)$(NETWORKING_AR)
55
Eric Andersen35e643b2003-07-28 07:40:39 +000056needcrypt-y:=
57needcrypt-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) := y
58
59ifeq ($(needcrypt-y),y)
60 LIBRARIES += -lcrypt
61endif
62
Eric Andersen85208e22002-04-12 12:05:57 +000063$(NETWORKING_DIR)$(NETWORKING_AR): $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
64 $(AR) -ro $@ $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
65