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.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>
|