]> git.proxmox.com Git - mirror_iproute2.git/blob - ip/Makefile
Remove configuration options for stuff using our copied header files.
[mirror_iproute2.git] / ip / Makefile
1 IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
2 rtm_map.o iptunnel.o ipneigh.o iplink.o \
3 ipmaddr.o ipmonitor.o ipmroute.o \
4 ipxfrm.o xfrm_state.o xfrm_policy.o
5
6 RTMONOBJ=rtmon.o
7
8 ALLOBJ=$(IPOBJ) $(RTMONOBJ)
9 TARGETS=ip rtmon
10
11 all: $(TARGETS)
12
13 ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL)
14
15 rtmon: $(RTMONOBJ) $(LIBNETLINK)
16
17 install: all
18 install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
19 install -m 0755 routel routef $(DESTDIR)$(SBINDIR)
20
21 clean:
22 rm -f $(ALLOBJ) $(TARGETS)
23