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 | |
| 40 | libraries-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 | |