Makefile.inc revision 124633
1# $FreeBSD: head/usr.sbin/pkg_install/Makefile.inc 124633 2004-01-17 13:41:16Z ru $
2
3.if exists(${.OBJDIR}/../lib)
4LIBINSTALL=	${.OBJDIR}/../lib/libinstall.a
5.else
6LIBINSTALL=	${.CURDIR}/../lib/libinstall.a
7.endif
8
9.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && \
10    defined(LDADD) && ${LDADD:M-lfetch} != ""
11DISTRIBUTION=	crypto
12DPADD+=		${LIBSSL} ${LIBCRYPTO}
13LDADD+=		-lssl -lcrypto
14.endif
15
16# Inherit BINDIR from one level up.
17.if exists(${.CURDIR}/../../Makefile.inc)
18.include "${.CURDIR}/../../Makefile.inc"
19.endif
20