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