]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/fetch/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.bin / fetch / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=           fetch
6 CSTD?=          c99
7 .if ${MK_OPENSSL} != "no"
8 DPADD=          ${LIBFETCH} ${LIBSSL} ${LIBCRYPTO}
9 LDADD=          -lfetch -lssl -lcrypto
10 .else
11 DPADD=          ${LIBFETCH} ${LIBMD}
12 LDADD=          -lfetch -lmd
13 .endif
14
15 .include <bsd.prog.mk>