added full udhcp integration
[oweals/busybox.git] / networking / Makefile.in
1 # 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
20 NETWORKING_AR:=networking.a
21 ifndef $(NETWORKING_DIR)
22 NETWORKING_DIR:=$(TOPDIR)networking/
23 endif
24
25 NETWORKING-y:=
26 NETWORKING-$(CONFIG_HOSTNAME)           += hostname.o
27 NETWORKING-$(CONFIG_IFCONFIG)           += ifconfig.o
28 NETWORKING-$(CONFIG_NC)                 += nc.o
29 NETWORKING-$(CONFIG_NETSTAT)            += netstat.o
30 NETWORKING-$(CONFIG_NSLOOKUP)           += nslookup.o
31 NETWORKING-$(CONFIG_PING)               += ping.o
32 NETWORKING-$(CONFIG_PING6)              += ping6.o
33 NETWORKING-$(CONFIG_ROUTE)              += route.o
34 NETWORKING-$(CONFIG_TELNET)             += telnet.o
35 NETWORKING-$(CONFIG_TELNETD)            += telnetd.o
36 NETWORKING-$(CONFIG_TFTP)               += tftp.o
37 NETWORKING-$(CONFIG_TRACEROUTE)         += traceroute.o
38 NETWORKING-$(CONFIG_WGET)               += wget.o
39
40 libraries-y+=$(NETWORKING_DIR)$(NETWORKING_AR)
41
42 $(NETWORKING_DIR)$(NETWORKING_AR): $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
43         $(AR) -ro $@ $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y))
44