mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-26 11:47:31 +00:00
23 lines
384 B
Makefile
23 lines
384 B
Makefile
# $Id: Makefile,v 1.3 1995/06/21 18:30:10 wollman Exp $
|
|
|
|
PROG= mrinfo
|
|
|
|
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= mrinfo.c
|
|
MAN8= ${.CURDIR}/../mrinfo.8
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
.include <bsd.prog.mk>
|