diff options
author | bde <bde@FreeBSD.org> | 1997-12-17 15:11:43 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-12-17 15:11:43 +0000 |
commit | 1a1b424469169cd0b0d17bbcde443ae9c2efca03 (patch) | |
tree | 603e4823fcb8c72044dad322a5d31afbc9b7e462 /usr.sbin/mrouted/map-mbone | |
parent | 438677fced9c6ac8e5c8037e09f2c1f5f7a7d3dc (diff) | |
download | FreeBSD-src-1a1b424469169cd0b0d17bbcde443ae9c2efca03.zip FreeBSD-src-1a1b424469169cd0b0d17bbcde443ae9c2efca03.tar.gz |
Don't use LDDESTDIR. Just put the -L arg in LDADD.
Diffstat (limited to 'usr.sbin/mrouted/map-mbone')
-rw-r--r-- | usr.sbin/mrouted/map-mbone/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/mrouted/map-mbone/Makefile b/usr.sbin/mrouted/map-mbone/Makefile index 9754fd7..2d7bf2f 100644 --- a/usr.sbin/mrouted/map-mbone/Makefile +++ b/usr.sbin/mrouted/map-mbone/Makefile @@ -1,18 +1,18 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 16:07:26 peter Exp $ PROG= map-mbone S= ${.CURDIR}/.. .PATH: $S CFLAGS+= -I$S -LDADD+= -lmrouted .if exists(${.OBJDIR}/../common) -LDDESTDIR+= -L${.OBJDIR}/../common -DPADD+= ${.OBJDIR}/../common/libmrouted.a +LDADD+= -L${.OBJDIR}/../common +DPADD+= ${.OBJDIR}/../common/libmrouted.a .else -LDDESTDIR+= -L$S/common -DPADD+= $S/common/libmrouted.a +LDADD+= -L$S/common +DPADD+= $S/common/libmrouted.a .endif +LDADD+= -lmrouted SRCS= mapper.c MAN8= ${.CURDIR}/../map-mbone.8 |