cd9a2f5c28
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
23 lines
401 B
Makefile
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>
|