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