]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/Makefile
(Logical change 1.3)
[mirror_iproute2.git] / ip / Makefile
CommitLineData
aba5acdf
SH
1IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
2 rtm_map.o iptunnel.o ipneigh.o iplink.o ipmaddr.o \
3 ipmonitor.o ipmroute.o
4
5RTMONOBJ=rtmon.o
6
7ALLOBJ=$(IPOBJ) $(RTMONOBJ)
8TARGETS=ip rtmon
9
10all: $(TARGETS)
11
12ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL)
13
14rtmon: $(RTMONOBJ) $(LIBNETLINK)
15
16install: all
17 install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
18 install -m 0755 routel routef $(DESTDIR)$(SBINDIR)
19
20clean:
21 rm -f $(ALLOBJ) $(TARGETS)
22