Home | History | Annotate | Line # | Download | only in postscreen
      1 #	$NetBSD: Makefile,v 1.4 2017/05/21 15:28:40 riastradh Exp $
      2 
      3 NOMAN=	# defined
      4 
      5 .include <bsd.own.mk>
      6 
      7 PROG=	postscreen
      8 
      9 DIST=	${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG}
     10 .PATH:	${DIST}
     11 
     12 SRCS=	postscreen.c postscreen_dict.c postscreen_dnsbl.c \
     13 	postscreen_early.c postscreen_expand.c postscreen_misc.c \
     14 	postscreen_send.c postscreen_smtpd.c postscreen_starttls.c \
     15 	postscreen_state.c postscreen_tests.c postscreen_haproxy.c \
     16 	postscreen_endpt.c
     17 
     18 DPADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL}
     19 LDADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL}
     20 
     21 DPADD+= ${LIBPTLS} ${LIBSSL} ${LIBCRYPTO}
     22 LDADD+= ${LIBPTLS} -lssl -lcrypto
     23 
     24 .include <bsd.prog.mk>
     25