2004-04-16 04:56:59 +08:00
|
|
|
DESTDIR=
|
2004-06-10 05:28:11 +08:00
|
|
|
SBINDIR=/usr/sbin
|
2004-04-16 04:56:59 +08:00
|
|
|
CONFDIR=/etc/iproute2
|
|
|
|
DOCDIR=/usr/doc/iproute2
|
|
|
|
|
2004-06-26 05:14:22 +08:00
|
|
|
# Path to parent kernel include files directory
|
|
|
|
KERNEL_INCLUDE:=/usr/include
|
2004-04-16 04:56:59 +08:00
|
|
|
|
|
|
|
DEFINES= -DRESOLVE_HOSTNAMES
|
|
|
|
|
|
|
|
#options if you have a bind>=4.9.4 libresolv (or, maybe, glibc)
|
|
|
|
LDLIBS=-lresolv
|
|
|
|
ADDLIB=
|
|
|
|
|
|
|
|
#options for decnet
|
|
|
|
ADDLIB+=dnet_ntop.o dnet_pton.o
|
|
|
|
|
|
|
|
#options for ipx
|
|
|
|
ADDLIB+=ipx_ntop.o ipx_pton.o
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g
|
2004-06-26 05:14:22 +08:00
|
|
|
CFLAGS = $(CCOPTS) -I$(KERNEL_INCLUDE) -I../include $(DEFINES)
|
2004-04-16 04:56:59 +08:00
|
|
|
|
|
|
|
LDLIBS += -L../lib -lnetlink -lutil
|
|
|
|
|
|
|
|
SUBDIRS=lib ip tc misc
|
|
|
|
|
|
|
|
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
|
|
|
|
|
2004-06-26 05:14:22 +08:00
|
|
|
all: Config
|
|
|
|
@for i in $(SUBDIRS); \
|
|
|
|
do $(MAKE) $(MFLAGS) -C $$i; done
|
|
|
|
|
|
|
|
Config:
|
|
|
|
./configure $(KERNEL_INCLUDE)
|
2004-04-16 04:56:59 +08:00
|
|
|
|
|
|
|
install: all
|
|
|
|
install -m 0755 -d $(DESTDIR)$(SBINDIR)
|
2004-06-26 05:14:22 +08:00
|
|
|
install -m 0755 -d $(CONFDIR)
|
2004-04-16 04:56:59 +08:00
|
|
|
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples
|
|
|
|
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv
|
|
|
|
install -m 0644 README.iproute2+tc $(shell find examples -type f -maxdepth 1) $(DESTDIR)$(DOCDIR)/examples
|
|
|
|
install -m 0644 $(shell echo examples/diffserv/*) $(DESTDIR)$(DOCDIR)/examples/diffserv
|
|
|
|
@for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done
|
|
|
|
@cd etc/iproute2; for i in *; do \
|
2004-06-26 05:14:22 +08:00
|
|
|
if [ ! -e $(CONFDIR)/$$i ]; then \
|
|
|
|
echo install -m 0644 $$i $(CONFDIR); \
|
|
|
|
install -m 0644 $$i $(CONFDIR); fi; done
|
2004-04-16 04:56:59 +08:00
|
|
|
|
|
|
|
clean:
|
2004-06-26 05:14:22 +08:00
|
|
|
@for i in $(SUBDIRS) doc; \
|
|
|
|
do $(MAKE) $(MFLAGS) -C $$i clean; done
|
|
|
|
|
|
|
|
clobber: clean
|
|
|
|
rm -f Config
|
|
|
|
|
2004-04-16 04:56:59 +08:00
|
|
|
|
|
|
|
.EXPORT_ALL_VARIABLES:
|