Add IOCTLS section and do some minor cleanup.
[dragonfly.git] / usr.sbin / pkg_install / Makefile.inc
1 # $FreeBSD: src/usr.sbin/pkg_install/Makefile.inc,v 1.10 2004/01/17 13:41:16 ru Exp $
2 # $DragonFly: src/usr.sbin/pkg_install/Attic/Makefile.inc,v 1.3 2004/07/30 04:46:11 dillon Exp $
3
4 .if exists(${.OBJDIR}/../lib)
5 LIBINSTALL=     ${.OBJDIR}/../lib/libinstall.a
6 .else
7 LIBINSTALL=     ${.CURDIR}/../lib/libinstall.a
8 .endif
9
10 .if !defined(NOCRYPT) && !defined(NO_OPENSSL) && \
11     defined(LDADD) && ${LDADD:M-lfetch} != ""
12 DISTRIBUTION=   crypto
13 DPADD+=         ${LIBSSL} ${LIBCRYPTO}
14 LDADD+=         -lssl -lcrypto
15 .endif
16
17 # turn off for now (fails w/ gcc34)
18 WFORMAT=0
19
20 # Inherit BINDIR from one level up.
21 .if exists(${.CURDIR}/../../Makefile.inc)
22 .include "${.CURDIR}/../../Makefile.inc"
23 .endif