Home | History | Annotate | Line # | Download | only in factor
      1 #	$NetBSD: Makefile,v 1.16 2025/07/19 11:01:58 christos Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PRIMES=	${NETBSDSRCDIR}/games/primes
      7 
      8 PROG=	factor
      9 SRCS=	factor.c pr_tbl.c
     10 CPPFLAGS+=-I${PRIMES}
     11 
     12 CPPFLAGS+=-DHAVE_OPENSSL
     13 LDADD+=	-lcrypto -lcrypt -lpthread
     14 DPADD+=	${LIBCRYPTO} ${LIBCRYPT} ${LIBPTHREAD}
     15 
     16 COPTS.factor.c+= -Wno-error=deprecated-declarations
     17 
     18 MAN=	factor.6
     19 .PATH:	${PRIMES}
     20 
     21 .include <bsd.prog.mk>
     22