Makefile revision 09a50f420bbf83546bfc685b2afa9435608eba1e
1761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. ThompsonTARGETS = ip-address.8 ip-link.8 ip-route.8
2761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
3e4ef49a465969a68704dbcfec43baa7f874f59ffPhil SutterMAN8PAGES = $(TARGETS) ip.8 arpd.8 lnstat.8 routel.8 rtacct.8 rtmon.8 rtpr.8 ss.8 \
4cbdd1e6921d21815e35d2a96526cfbad5ac98e09Daniel Borkmann	tc.8 tc-bfifo.8 tc-bpf.8 tc-cbq.8 tc-cbq-details.8 tc-choke.8 tc-codel.8 \
5484b3f922cfd5a38a73de5981e471f99ecfe3e8bFlorian Westphal	tc-fq.8 \
68c45275594af49516dbdeb73850120d47d5a5cd9Mythili Prabhu	tc-drr.8 tc-ematch.8 tc-fq_codel.8 tc-hfsc.8 tc-htb.8 tc-pie.8 \
739935c937489b173b192e95885a3c5a971688291John Fastabend	tc-mqprio.8 tc-netem.8 tc-pfifo.8 tc-pfifo_fast.8 tc-prio.8 tc-red.8 \
8059547c59740fed028695f9aafbbdbec87ef57baJohn Fastabend	tc-sfb.8 tc-sfq.8 tc-stab.8 tc-tbf.8 \
9d04bc300c3e367702817fed6eea55e997a328c66Stephen Hemminger	bridge.8 rtstat.8 ctstat.8 nstat.8 routef.8 \
10409998c5a4eb113e1997712b674e946366a872c6Ebben Aries	ip-addrlabel.8 ip-fou.8 ip-gue.8 ip-l2tp.8 \
115147af5acb5a9a7130836a6f0c0a5d2b548ad195Stephen Hemminger	ip-maddress.8 ip-monitor.8 ip-mroute.8 ip-neighbour.8 \
12987e9d710acc6c8fe3d638a4c667f6d6c957a76dAndreas Henriksson	ip-netns.8 ip-ntable.8 ip-rule.8 ip-tunnel.8 ip-xfrm.8 \
1309a50f420bbf83546bfc685b2afa9435608eba1eStephen Hemminger	ip-tcp_metrics.8 ip-netconf.8 ip-token.8 \
1409a50f420bbf83546bfc685b2afa9435608eba1eStephen Hemminger	tipc.8 tipc-bearer.8 tipc-link.8 tipc-media.8 tipc-nametable.8 \
1509a50f420bbf83546bfc685b2afa9435608eba1eStephen Hemminger	tipc-node.8 tipc-socket.8
16761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
17761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsonall: $(TARGETS)
18761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
19761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsonip-address.8: ip-address.8.in
20761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	sed "s|@SYSCONFDIR@|$(CONFDIR)|g" $< > $@
21761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
22761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsonip-link.8: ip-link.8.in
23761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	sed "s|@SYSCONFDIR@|$(CONFDIR)|g" $< > $@
24761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
25761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsonip-route.8: ip-route.8.in
26761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	sed "s|@SYSCONFDIR@|$(CONFDIR)|g" $< > $@
27761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
28761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsondistclean: clean
29761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
30761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsonclean:
31761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	@rm -f $(TARGETS)
32761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
33761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompsoninstall:
34761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	$(INSTALLDIR) $(DESTDIR)$(MANDIR)/man8
35761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson	$(INSTALLMAN) $(MAN8PAGES) $(DESTDIR)$(MANDIR)/man8
36761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson
37761a1e602862b5f26b4e7e748fe51303a628958fChristoph J. Thompson.PHONY: install clean distclean
38