freebsd-dev/usr.sbin/mrouted/mrinfo/Makefile
Garrett Wollman bac23a9f14 Bill Fenner points out that mrinfo and mtrace should probably be set-uid
root so that normal users can use them.  The same caveats apply as for
regular traceroute.
1995-06-21 18:30:16 +00:00

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>