freebsd-skq/usr.sbin/mrouted/mtrace/Makefile
wollman a7fec366ae 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.1 1994/09/08 02:51:37 wollman Exp $
PROG= mtrace
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= mtrace.c
MAN8= ${.CURDIR}/../mtrace.8
BINOWN= root
BINMODE=4755
.include <bsd.prog.mk>