]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/bsdinstall/distextract/Makefile
MFC r264400,r265836:
[FreeBSD/stable/10.git] / usr.sbin / bsdinstall / distextract / Makefile
1 # $FreeBSD$
2
3 BINDIR= /usr/libexec/bsdinstall
4 PROG=   distextract
5 DPADD=  ${LIBARCHIVE} ${LIBDIALOG} ${LIBM}
6 LDADD=  -larchive -ldialog -lm
7
8 WARNS?= 6
9 MAN=
10
11 .include <bsd.own.mk>
12
13 .if ${MK_NCURSESW} == "no"
14 DPADD+= ${LIBNCURSES}
15 LDADD+= -lncurses
16 .else
17 DPADD+= ${LIBNCURSESW}
18 LDADD+= -lncursesw
19 .endif
20
21 .include <bsd.prog.mk>