freebsd-dev/usr.sbin/mrouted/mrinfo/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.4 1996/05/20 16:42:30 pst Exp $
PROG= mrinfo
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= mrinfo.c
MAN8= ${.CURDIR}/../mrinfo.8
BINOWN= root
BINMODE=4555
.include <bsd.prog.mk>