1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1998-03-07 08:55:00 +00:00
|
|
|
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
|
|
LIBINSTALL= ${.OBJDIR}/../lib/libinstall.a
|
|
|
|
.else
|
|
|
|
LIBINSTALL= ${.CURDIR}/../lib/libinstall.a
|
|
|
|
.endif
|
|
|
|
|
2004-12-21 10:16:04 +00:00
|
|
|
.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && \
|
2004-01-17 13:41:16 +00:00
|
|
|
defined(LDADD) && ${LDADD:M-lfetch} != ""
|
|
|
|
DPADD+= ${LIBSSL} ${LIBCRYPTO}
|
|
|
|
LDADD+= -lssl -lcrypto
|
|
|
|
.endif
|
|
|
|
|
1994-09-13 10:20:02 +00:00
|
|
|
# Inherit BINDIR from one level up.
|
2004-01-17 13:27:27 +00:00
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
2002-02-27 19:03:15 +00:00
|
|
|
.endif
|