blob: a0109462fcb3ffa083a17888d48dbc93c23b101c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.include <src.opts.mk>
PROG= factor
SRCS= factor.c pr_tbl.c
CFLAGS+=-I${SRCTOP}/usr.bin/primes
.if ${MK_OPENSSL} != "no"
CFLAGS+=-DHAVE_OPENSSL
LIBADD+=crypto
.endif
MAN= factor.6
MLINKS+=factor.6 primes.6
.PATH: ${SRCTOP}/usr.bin/primes
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.prog.mk>
|