freebsd-dev/games/factor/Makefile

19 lines
326 B
Makefile
Raw Normal View History

# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
PROG= factor
SRCS= factor.c pr_tbl.c
CFLAGS+=-I${.CURDIR}/../primes
2004-12-21 10:16:04 +00:00
.if !defined(NO_CRYPT) && !defined(NO_OPENSSL)
CFLAGS+=-DHAVE_OPENSSL
DPADD= ${LIBCRYPTO}
LDADD= -lcrypto
.endif
MAN= factor.6
MLINKS+=factor.6 primes.6
.PATH: ${.CURDIR}/../primes
.include <bsd.prog.mk>