1 # $NetBSD: Makefile,v 1.6 2025/03/08 16:40:44 christos Exp $ 2 3 WARNS?= 3 # XXX third-party program, many issues 4 5 .include <bsd.own.mk> 6 7 PROG= plainrsa-gen 8 SRCS+= plainrsa-gen.c 9 MAN= plainrsa-gen.8 10 11 CPPFLAGS+=-DNOUSE_PRIVSEP 12 LDADD+= -lcrypto -lipsec 13 DPADD+= ${LIBCRYPTO} ${LIBIPSEC} 14 15 .include "${.CURDIR}/../racoon/Makefile.racoon" 16 17 .include <bsd.prog.mk> 18