94036a8cf0
Added man pages for mrinfo and map-mbone. Rewrote all man pages to use mdoc(7). Submitted by: Mark Tinguely <tinguely@plains.NoDak.edu>
21 lines
364 B
Makefile
21 lines
364 B
Makefile
# $Id: Makefile,v 1.1 1994/09/08 02:51:33 wollman Exp $
|
|
|
|
PROG= map-mbone
|
|
|
|
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= mapper.c
|
|
MAN8= ${.CURDIR}/../map-mbone.8
|
|
|
|
.include <bsd.prog.mk>
|