blob: 99fa22e9d361382261faee9e8d67f1b342eb2e4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# 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.
#
srcdir=$(top_srcdir)/networking/libiproute
objdir=$(top_builddir)/networking/libiproute
LIBIPROUTE-$(CONFIG_IP) += \
ip_parse_common_args \
ipaddress \
iplink \
iproute \
iptunnel \
libnetlink \
ll_addr \
ll_map \
ll_proto \
ll_types \
rt_names \
rtm_map \
utils
LIBIPROUTE-$(CONFIG_IPADDR) += \
ip_parse_common_args \
ipaddress \
libnetlink \
ll_addr \
ll_map \
ll_types \
rt_names \
utils
LIBIPROUTE-$(CONFIG_IPLINK) += \
ip_parse_common_args \
ipaddress \
iplink \
libnetlink \
ll_addr \
ll_map \
ll_types \
rt_names \
utils
LIBIPROUTE-$(CONFIG_IPROUTE) += \
ip_parse_common_args \
iproute \
libnetlink \
ll_map \
rt_names \
rtm_map \
utils
LIBIPROUTE-$(CONFIG_IPTUNNEL) += \
ip_parse_common_args \
iptunnel \
rt_names \
utils
LIBIPROUTE-y:=$(sort $(LIBIPROUTE-y))
LIBIPROUTE_SRC-y:=$(patsubst %,$(srcdir)/%.c,$(LIBIPROUTE-y))
LIBIPROUTE_SRC-a:=$(wildcard $(srcdir)/*.c)
LIBRARY_SRC-y+=$(LIBIPROUTE_SRC-y)
LIBRARY_SRC-a+=$(LIBIPROUTE_SRC-a)
networking_libiproute_OBJ$(os):=$(patsubst %,$(objdir)/%$(os),$(LIBIPROUTE-y))
|