mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
bdcbfde31e
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
21 lines
305 B
Makefile
21 lines
305 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>
|