]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - games/factor/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / games / factor / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   factor
7 SRCS=   factor.c pr_tbl.c
8 CFLAGS+=-I${.CURDIR}/../primes
9
10 .if ${MK_OPENSSL} != "no"
11 CFLAGS+=-DHAVE_OPENSSL
12 DPADD=  ${LIBCRYPTO}
13 LDADD=  -lcrypto
14 .endif
15
16 MAN=    factor.6
17 MLINKS+=factor.6 primes.6
18 .PATH:  ${.CURDIR}/../primes
19
20 .include <bsd.prog.mk>