a7fec366ae
root so that normal users can use them. The same caveats apply as for regular traceroute.
23 lines
384 B
Makefile
23 lines
384 B
Makefile
# $Id: Makefile,v 1.2 1995/03/31 21:16:59 wollman Exp $
|
|
|
|
PROG= mrinfo
|
|
|
|
S= ${.CURDIR}/..
|
|
.PATH: $S
|
|
CFLAGS+= -I$S
|
|
LDADD+= -lmrouted
|
|
.if exists($S/common/obj)
|
|
LDDESTDIR+= -L$S/common/obj
|
|
DPADD+= $S/common/obj/libmrouted.a
|
|
.else
|
|
LDDESTDIR+= -L$S/common
|
|
DPADD+= $S/common/libmrouted.a
|
|
.endif
|
|
|
|
SRCS= mrinfo.c
|
|
MAN8= ${.CURDIR}/../mrinfo.8
|
|
BINOWN= root
|
|
BINMODE=4755
|
|
|
|
.include <bsd.prog.mk>
|