]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/Makefile
don't need sa_family
[mirror_iproute2.git] / ip / Makefile
CommitLineData
aba5acdf 1IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
b9cb1c9a 2 rtm_map.o iptunnel.o ipneigh.o iplink.o \
1cb54e58 3 ipmaddr.o ipmonitor.o ipmroute.o ipprefix.o \
4b1bbd9c 4 ipxfrm.o xfrm_state.o xfrm_policy.o
aba5acdf
SH
5
6RTMONOBJ=rtmon.o
7
8ALLOBJ=$(IPOBJ) $(RTMONOBJ)
cb4d97a9 9TARGETS=ip rtmon ifcfg rtpr
aba5acdf
SH
10
11all: $(TARGETS)
12
13ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL)
14
15rtmon: $(RTMONOBJ) $(LIBNETLINK)
16
17install: all
18 install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
19 install -m 0755 routel routef $(DESTDIR)$(SBINDIR)
20
21clean:
22 rm -f $(ALLOBJ) $(TARGETS)
23