]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.sbin/bsdinstall/distfetch/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / usr.sbin / bsdinstall / distfetch / Makefile
1 # $FreeBSD$
2
3 BINDIR= /usr/libexec/bsdinstall
4 PROG=   distfetch
5 DPADD=  ${LIBFETCH} ${LIBDIALOG} ${LIBM}
6 LDADD=  -lfetch -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>