]> git.proxmox.com Git - mirror_iproute2.git/blame_incremental - Makefile
veth: use kernel header file
[mirror_iproute2.git] / Makefile
... / ...
CommitLineData
1DESTDIR=
2SBINDIR=/usr/sbin
3CONFDIR=/etc/iproute2
4DOCDIR=/usr/share/doc/iproute2
5MANDIR=/usr/share/man
6
7# Path to db_185.h include
8DBM_INCLUDE:=/usr/include
9
10DEFINES= -DRESOLVE_HOSTNAMES
11
12#options if you have a bind>=4.9.4 libresolv (or, maybe, glibc)
13LDLIBS=-lresolv
14ADDLIB=
15
16#options for decnet
17ADDLIB+=dnet_ntop.o dnet_pton.o
18
19#options for ipx
20ADDLIB+=ipx_ntop.o ipx_pton.o
21
22CC = gcc
23HOSTCC = gcc
24CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall
25CFLAGS = $(CCOPTS) -I../include $(DEFINES)
26YACCFLAGS = -d -t -v
27
28LDLIBS += -L../lib -lnetlink -lutil
29
30SUBDIRS=lib ip tc misc netem genl
31
32LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
33
34all: Config
35 @set -e; \
36 for i in $(SUBDIRS); \
37 do $(MAKE) $(MFLAGS) -C $$i; done
38
39Config:
40 sh configure $(KERNEL_INCLUDE)
41
42install: all
43 install -m 0755 -d $(DESTDIR)$(SBINDIR)
44 install -m 0755 -d $(DESTDIR)$(CONFDIR)
45 install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples
46 install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv
47 install -m 0644 README.iproute2+tc $(shell find examples -maxdepth 1 -type f) \
48 $(DESTDIR)$(DOCDIR)/examples
49 install -m 0644 $(shell find examples/diffserv -maxdepth 1 -type f) \
50 $(DESTDIR)$(DOCDIR)/examples/diffserv
51 @for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done
52 install -m 0644 $(shell find etc/iproute2 -maxdepth 1 -type f) $(DESTDIR)$(CONFDIR)
53 install -m 0755 -d $(DESTDIR)$(MANDIR)/man8
54 install -m 0644 $(shell find man/man8 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man8
55 ln -sf tc-bfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8
56 ln -sf lnstat.8 $(DESTDIR)$(MANDIR)/man8/rtstat.8
57 ln -sf lnstat.8 $(DESTDIR)$(MANDIR)/man8/ctstat.8
58 ln -sf rtacct.8 $(DESTDIR)$(MANDIR)/man8/nstat.8
59 install -m 0755 -d $(DESTDIR)$(MANDIR)/man3
60 install -m 0644 $(shell find man/man3 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man3
61
62clean:
63 rm -f cscope.*
64 @for i in $(SUBDIRS) doc; \
65 do $(MAKE) $(MFLAGS) -C $$i clean; done
66
67clobber: clean
68 rm -f Config
69
70distclean: clobber
71
72cscope:
73 cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc
74
75.EXPORT_ALL_VARIABLES: