blob: 61ab347cc9f7509b2677bb121bee65a20fd79f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.8 2004/10/28 06:36:51 cube Exp $
.include "../../mail/sendmail/Makefile.common"
PKGNAME= libmilter-${DIST_VERS}
COMMENT= Mail filter support library for sendmail
post-patch: make-sendmail-siteconfig
do-build:
@(cd ${WRKSRC}/libmilter; ${SETENV} ${MAKE_ENV} ./Build)
do-install:
@(cd ${WRKSRC}/libmilter; ${SETENV} ${MAKE_ENV} ./Build INCLUDEDIR=${PREFIX}/include LIBDIR=${PREFIX}/lib install)
PTHREAD_OPTS+= require
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
# has to be below include for bsd.pkg.mk, else substition fails
OBJDIR!= ${ECHO} obj.`${UNAME} -srm | ${TR} \ .`
|