Makefile.inc revision 139113
1# $FreeBSD: head/usr.sbin/pkg_install/Makefile.inc 139113 2004-12-21 10:16:04Z 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(NO_CRYPT) && !defined(NO_OPENSSL) && \
10    defined(LDADD) && ${LDADD:M-lfetch} != ""
11DPADD+=		${LIBSSL} ${LIBCRYPTO}
12LDADD+=		-lssl -lcrypto
13.endif
14
15# Inherit BINDIR from one level up.
16.if exists(${.CURDIR}/../../Makefile.inc)
17.include "${.CURDIR}/../../Makefile.inc"
18.endif
19