mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
19 lines
304 B
Makefile
19 lines
304 B
Makefile
.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>
|