Make sure stdlib.h is always included before dmalloc.h to avoid problems
[oweals/busybox.git] / networking / libiproute / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
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
25 LIBIPROUTE-$(CONFIG_IP) += \
26         ip_parse_common_args.o \
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