Makefile revision 104722
1#	@(#)Makefile	8.1 (Berkeley) 5/31/93
2# $FreeBSD: head/games/factor/Makefile 104722 2002-10-09 19:55:04Z fanf $
3
4PROG=	factor
5SRCS=	factor.c pr_tbl.c
6CFLAGS+=-I${.CURDIR}/../primes
7
8.if exists(${.CURDIR}/../../crypto) && !defined(NO_OPENSSL)
9CFLAGS+=-DHAVE_OPENSSL
10LDADD+=	-lcrypto
11DPADD+=	${LIBCRYPTO}
12.endif
13
14MAN=	factor.6
15MLINKS+=factor.6 primes.6
16.PATH:	${.CURDIR}/../primes
17
18.include <bsd.prog.mk>
19