aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-04-12 02:22:39 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-04-12 02:22:39 +0000
commit36c74789920de6ccee6554b148313ae29b86f2aa (patch)
tree854a16a4a3ac4f5b60115f7ebe12ddab4d22ed6e /networking
parent958ac18d4efe68fdad8dfae15355b7fd27452a2d (diff)
downloadbusybox-36c74789920de6ccee6554b148313ae29b86f2aa.tar.gz
Fix up conditional compile of files needed by ip applets
Diffstat (limited to 'networking')
-rw-r--r--networking/libiproute/Makefile.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/networking/libiproute/Makefile.in b/networking/libiproute/Makefile.in
index d6f95048c..25c51999f 100644
--- a/networking/libiproute/Makefile.in
+++ b/networking/libiproute/Makefile.in
@@ -37,6 +37,42 @@ LIBIPROUTE-$(CONFIG_IP) += \
rtm_map.o \
utils.o
+LIBIPROUTE-$(CONFIG_IPADDR) += \
+ ip_parse_common_args.o \
+ ipaddress.o \
+ libnetlink.o \
+ ll_addr.o \
+ ll_map.o \
+ ll_types.o \
+ rt_names.o \
+ utils.o
+
+LIBIPROUTE-$(CONFIG_IPLINK) += \
+ ip_parse_common_args.o \
+ ipaddress.o \
+ iplink.o \
+ libnetlink.o \
+ ll_addr.o \
+ ll_map.o \
+ ll_types.o \
+ rt_names.o \
+ utils.o
+
+LIBIPROUTE-$(CONFIG_IPROUTE) += \
+ ip_parse_common_args.o \
+ iproute.o \
+ libnetlink.o \
+ ll_map.o \
+ rt_names.o \
+ rtm_map.o \
+ utils.o
+
+LIBIPROUTE-$(CONFIG_IPTUNNEL) += \
+ ip_parse_common_args.o \
+ iptunnel.o \
+ rt_names.o \
+ utils.o
+
libraries-y+=$(LIBIPROUTE_DIR)$(LIBIPROUTE_AR)
$(LIBIPROUTE_DIR)$(LIBIPROUTE_AR): $(patsubst %,$(LIBIPROUTE_DIR)%, $(LIBIPROUTE-y))