mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-20 10:16:34 +01:00
bb49371b5d
Some of these ``modified'' files aren't really modified at all, but CVS isn't smart enough to know the difference.
21 lines
287 B
Makefile
21 lines
287 B
Makefile
# $Id$
|
|
|
|
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
|
|
NOMAN=
|
|
|
|
.include <bsd.prog.mk>
|