mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
23 lines
356 B
Makefile
23 lines
356 B
Makefile
# $Id$
|
|
|
|
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>
|