]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/fetch/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / fetch / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=           fetch
6 CSTD?=          c99
7 WARNS?=         6
8 DPADD=          ${LIBFETCH}
9 LDADD=          -lfetch
10 .if ${MK_OPENSSL} != "no"
11 DPADD+=         ${LIBSSL} ${LIBCRYPTO}
12 LDADD+=         -lssl -lcrypto
13 .endif
14
15 .include <bsd.prog.mk>