mirror of
https://github.com/sheumann/hush.git
synced 2024-11-09 02:09:01 +00:00
c2b3e370d6
There is something wrong in the new buildsys: If one selects ip and has e.g. rule or route unset, ip still wants to build those. This fails (correctly) since rtnl_rttable_n2a and rtnl_rtrealm_n2a aren't available if they were turned off. TODO: Talk to vda about this
62 lines
998 B
Makefile
62 lines
998 B
Makefile
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
#
|
|
|
|
lib-y:=
|
|
lib-$(CONFIG_IP) += \
|
|
ip_parse_common_args.o \
|
|
libnetlink.o \
|
|
ll_addr.o \
|
|
ll_map.o \
|
|
ll_proto.o \
|
|
ll_types.o \
|
|
rt_names.o \
|
|
rtm_map.o \
|
|
utils.o
|
|
|
|
lib-$(CONFIG_FEATURE_IP_ADDRESS) += \
|
|
ip_parse_common_args.o \
|
|
ipaddress.o \
|
|
libnetlink.o \
|
|
ll_addr.o \
|
|
ll_map.o \
|
|
ll_types.o \
|
|
rt_names.o \
|
|
utils.o
|
|
|
|
lib-$(CONFIG_FEATURE_IP_LINK) += \
|
|
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
|
|
|
|
lib-$(CONFIG_FEATURE_IP_ROUTE) += \
|
|
ip_parse_common_args.o \
|
|
iproute.o \
|
|
libnetlink.o \
|
|
ll_map.o \
|
|
rt_names.o \
|
|
rtm_map.o \
|
|
utils.o
|
|
|
|
lib-$(CONFIG_FEATURE_IP_TUNNEL) += \
|
|
ip_parse_common_args.o \
|
|
iptunnel.o \
|
|
rt_names.o \
|
|
utils.o
|
|
|
|
lib-$(CONFIG_FEATURE_IP_RULE) += \
|
|
ip_parse_common_args.o \
|
|
iprule.o \
|
|
rt_names.o \
|
|
utils.o
|
|
|