]> git.proxmox.com Git - mirror_iproute2.git/blob - Makefile
2005-01-13 Jim Gifford <lfs@jg555.com>
[mirror_iproute2.git] / Makefile
1 DESTDIR=
2 SBINDIR=/usr/sbin
3 CONFDIR=/etc/iproute2
4 DOCDIR=/usr/share/doc/iproute2
5 MANDIR=/usr/share/man
6
7 # Path to db_185.h include
8 DBM_INCLUDE:=/usr/include
9
10 DEFINES= -DRESOLVE_HOSTNAMES
11
12 #options if you have a bind>=4.9.4 libresolv (or, maybe, glibc)
13 LDLIBS=-lresolv
14 ADDLIB=
15
16 #options for decnet
17 ADDLIB+=dnet_ntop.o dnet_pton.o
18
19 #options for ipx
20 ADDLIB+=ipx_ntop.o ipx_pton.o
21
22 CC = gcc
23 CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g
24 CFLAGS = $(CCOPTS) -I../include $(DEFINES)
25
26 LDLIBS += -L../lib -lnetlink -lutil
27
28 SUBDIRS=lib ip tc misc
29
30 LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
31
32 all: Config
33 @for i in $(SUBDIRS); \
34 do $(MAKE) $(MFLAGS) -C $$i; done
35
36 Config:
37 ./configure $(KERNEL_INCLUDE)
38
39 install: all
40 install -m 0755 -d $(DESTDIR)$(SBINDIR)
41 install -m 0755 -d $(DESTDIR)$(CONFDIR)
42 install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples
43 install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv
44 install -m 0644 README.iproute2+tc $(shell find examples -maxdepth 1 -type f) \
45 $(DESTDIR)$(DOCDIR)/examples
46 install -m 0644 $(shell find examples/diffserv -maxdepth 1 -type f) \
47 $(DESTDIR)$(DOCDIR)/examples/diffserv
48 @for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done
49 install -m 0644 $(shell find etc/iproute2 -maxdepth 1 -type f) $(DESTDIR)$(CONFDIR)
50 install -m 0755 -d $(DESTDIR)$(MANDIR)/man8
51 install -m 0644 $(shell find man/man8 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man8
52 ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-bfifo.8
53 ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8
54 install -m 0644 $(shell find man/man3 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man3
55
56 clean:
57 @for i in $(SUBDIRS) doc; \
58 do $(MAKE) $(MFLAGS) -C $$i clean; done
59
60 clobber: clean
61 rm -f Config
62
63 distclean: clean clobber
64
65 .EXPORT_ALL_VARIABLES: