]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/pkg_install/Makefile.inc
This commit was generated by cvs2svn to compensate for changes in r143439,
[FreeBSD/FreeBSD.git] / usr.sbin / pkg_install / Makefile.inc
1 # $FreeBSD$
2
3 .if exists(${.OBJDIR}/../lib)
4 LIBINSTALL=     ${.OBJDIR}/../lib/libinstall.a
5 .else
6 LIBINSTALL=     ${.CURDIR}/../lib/libinstall.a
7 .endif
8
9 .if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && \
10     defined(LDADD) && ${LDADD:M-lfetch} != ""
11 DPADD+=         ${LIBSSL} ${LIBCRYPTO}
12 LDADD+=         -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