blob: d6f95048c0b0926a04b07465d70599cd964eefe6 [file] [log] [blame]
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00004#
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
20LIBIPROUTE_AR:=libiproute.a
21ifndef $(LIBIPROUTE_DIR)
22LIBIPROUTE_DIR:=$(TOPDIR)networking/libiproute/
23endif
24
Glenn L McGrath8ae75012002-11-10 10:20:45 +000025LIBIPROUTE-$(CONFIG_IP) += \
Glenn L McGrathf112daa2002-12-01 23:04:06 +000026 ip_parse_common_args.o \
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000027 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
40libraries-y+=$(LIBIPROUTE_DIR)$(LIBIPROUTE_AR)
41
42$(LIBIPROUTE_DIR)$(LIBIPROUTE_AR): $(patsubst %,$(LIBIPROUTE_DIR)%, $(LIBIPROUTE-y))
43 $(AR) -ro $@ $(patsubst %,$(LIBIPROUTE_DIR)%, $(LIBIPROUTE-y))
44