1# $NetBSD: Makefile,v 1.1 2011/03/02 22:24:55 tron Exp $ 2 3NOMAN= # defined 4 5.include <bsd.own.mk> 6 7PROG= postscreen 8 9DIST= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG} 10.PATH: ${DIST} 11 12SRCS= postscreen.c postscreen_access.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 16 17 18DPADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL} 19LDADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL} 20 21.if ${MKCRYPTO} != "no" 22DPADD+= ${LIBPTLS} ${LIBSSL} ${LIBCRYPTO} 23LDADD+= ${LIBPTLS} -lssl -lcrypto 24.endif 25 26.include <bsd.prog.mk> 27