freebsd-dev/usr.sbin/mrouted/mtrace/Makefile
Jordan K. Hubbard cd9a2f5c28 Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src.  This is the final version of the
patches, incorporating the feedback I've received from -current.
1996-06-24 04:26:21 +00:00

23 lines
401 B
Makefile

# $Id: Makefile,v 1.3 1996/05/20 16:42:32 pst Exp $
PROG= mtrace
S= ${.CURDIR}/..
.PATH: $S
CFLAGS+= -I$S
LDADD+= -lmrouted
.if exists(${.OBJDIR}/../common)
LDDESTDIR+= -L${.OBJDIR}/../common
DPADD+= ${.OBJDIR}/../common/libmrouted.a
.else
LDDESTDIR+= -L$S/common
DPADD+= $S/common/libmrouted.a
.endif
SRCS= mtrace.c
MAN8= ${.CURDIR}/../mtrace.8
BINOWN= root
BINMODE=4555
.include <bsd.prog.mk>