Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Glenn L McGrath | 8ae7501 | 2002-11-10 10:20:45 +0000 | [diff] [blame] | 25 | LIBIPROUTE-$(CONFIG_IP) += \ |
Glenn L McGrath | f112daa | 2002-12-01 23:04:06 +0000 | [diff] [blame] | 26 | ip_parse_common_args.o \ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Glenn L McGrath | 36c7478 | 2004-04-12 02:22:39 +0000 | [diff] [blame^] | 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 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |