iproute2/Makefile

68 lines
1.8 KiB
Makefile
Raw Normal View History

2004-04-16 04:56:59 +08:00
DESTDIR=
SBINDIR=/usr/sbin
2004-04-16 04:56:59 +08:00
CONFDIR=/etc/iproute2
DOCDIR=/usr/share/doc/iproute2
2004-08-31 06:37:50 +08:00
MANDIR=/usr/share/man
2004-04-16 04:56:59 +08:00
# Path to db_185.h include
DBM_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
HOSTCC = gcc
CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall
CFLAGS = $(CCOPTS) -I../include $(DEFINES)
2004-04-16 04:56:59 +08:00
LDLIBS += -L../lib -lnetlink -lutil
SUBDIRS=lib ip tc misc netem
2004-04-16 04:56:59 +08:00
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
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)
install -m 0755 -d $(DESTDIR)$(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 -maxdepth 1 -type f) \
$(DESTDIR)$(DOCDIR)/examples
install -m 0644 $(shell find examples/diffserv -maxdepth 1 -type f) \
$(DESTDIR)$(DOCDIR)/examples/diffserv
2004-04-16 04:56:59 +08:00
@for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done
install -m 0644 $(shell find etc/iproute2 -maxdepth 1 -type f) $(DESTDIR)$(CONFDIR)
install -m 0755 -d $(DESTDIR)$(MANDIR)/man8
install -m 0644 $(shell find man/man8 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man8
ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-bfifo.8
ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8
install -m 0755 -d $(DESTDIR)$(MANDIR)/man3
install -m 0644 $(shell find man/man3 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man3
2004-04-16 04:56:59 +08:00
clean:
@for i in $(SUBDIRS) doc; \
do $(MAKE) $(MFLAGS) -C $$i clean; done
clobber: clean
rm -f Config
distclean: clean clobber
2004-04-16 04:56:59 +08:00
.EXPORT_ALL_VARIABLES: