aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsdinstall/distextract/Makefile
blob: e359bba590e572cbf879bc0775ab6b318dc78976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $FreeBSD$

BINDIR= /usr/libexec/bsdinstall
PROG=	distextract
DPADD=	${LIBARCHIVE} ${LIBDIALOG} ${LIBM}
LDADD=	-larchive -ldialog -lm

WARNS?=	6
MAN=

.include <src.opts.mk>

.if ${MK_NCURSESW} == "no"
DPADD+=	${LIBNCURSES}
LDADD+=	-lncurses
.else
DPADD+=	${LIBNCURSESW}
LDADD+=	-lncursesw
.endif

.include <bsd.prog.mk>