Fix up conditional compile of files needed by ip applets
[oweals/busybox.git] / networking / libiproute / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.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 LIBIPROUTE_AR:=libiproute.a
21 ifndef $(LIBIPROUTE_DIR)
22 LIBIPROUTE_DIR:=$(TOPDIR)networking/libiproute/
23 endif
24
25 LIBIPROUTE-$(CONFIG_IP) += \
26         ip_parse_common_args.o \
27         ipaddress.o \
28         iplink.o \
29         iproute.o \
30         iptunnel.o \
31         libnetlink.o \
32         ll_addr.o \
33         ll_map.o \
34         ll_proto.o \
35         ll_types.o \
36         rt_names.o \
37         rtm_map.o \
38         utils.o
39
40 LIBIPROUTE-$(CONFIG_IPADDR) += \
41         ip_parse_common_args.o \
42         ipaddress.o \
43         libnetlink.o \
44         ll_addr.o \
45         ll_map.o \
46         ll_types.o \
47         rt_names.o \
48         utils.o
49
50 LIBIPROUTE-$(CONFIG_IPLINK) += \
51         ip_parse_common_args.o \
52         ipaddress.o \
53         iplink.o \
54         libnetlink.o \
55         ll_addr.o \
56         ll_map.o \
57         ll_types.o \
58         rt_names.o \
59         utils.o
60
61 LIBIPROUTE-$(CONFIG_IPROUTE) += \
62         ip_parse_common_args.o \
63         iproute.o \
64         libnetlink.o \
65         ll_map.o \
66         rt_names.o \
67         rtm_map.o \
68         utils.o
69
70 LIBIPROUTE-$(CONFIG_IPTUNNEL) += \
71         ip_parse_common_args.o \
72         iptunnel.o \
73         rt_names.o \
74         utils.o
75
76 libraries-y+=$(LIBIPROUTE_DIR)$(LIBIPROUTE_AR)
77
78 $(LIBIPROUTE_DIR)$(LIBIPROUTE_AR): $(patsubst %,$(LIBIPROUTE_DIR)%, $(LIBIPROUTE-y))
79         $(AR) -ro $@ $(patsubst %,$(LIBIPROUTE_DIR)%, $(LIBIPROUTE-y))
80