summaryrefslogtreecommitdiffstats
path: root/factor/Makefile
blob: 89ea508bdde6f9e70a08ba17f1302f1d354f6d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$NetBSD: Makefile,v 1.9 2002/06/16 22:24:01 itojun Exp $
#	@(#)Makefile	8.1 (Berkeley) 5/31/93

# For MKCRYPTO
.include <bsd.own.mk>

PROG=	factor
SRCS=	factor.c pr_tbl.c
CPPFLAGS+=-I${.CURDIR}/../primes

.if (${MKCRYPTO} != "no")
CPPFLAGS+=-DHAVE_OPENSSL
LDADD+=	-lcrypto
DPADD+=	${LIBCRYPTO}
.endif

MAN=	factor.6
MLINKS+=factor.6 primes.6
.PATH:	${.CURDIR}/../primes

.include <bsd.prog.mk>