20 lines
485 B
Makefile
20 lines
485 B
Makefile
# $NetBSD: Makefile,v 1.2 2001/03/13 18:13:22 itojun Exp $
|
|
|
|
PROG= qmgr
|
|
|
|
DIST= ${.CURDIR}/../../../dist/postfix/src/${PROG}
|
|
.PATH: ${DIST}
|
|
|
|
BINDIR= ${PFIX_LIBEXECDIR}
|
|
|
|
SRCS= qmgr.c qmgr_active.c qmgr_transport.c qmgr_queue.c qmgr_entry.c \
|
|
qmgr_message.c qmgr_deliver.c qmgr_move.c qmgr_rcpt_list.c \
|
|
qmgr_defer.c qmgr_enable.c qmgr_scan.c qmgr_bounce.c
|
|
|
|
DPADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL}
|
|
LDADD+= ${LIBPMASTER} ${LIBPGLOBAL} ${LIBPUTIL}
|
|
|
|
NOMAN=1
|
|
|
|
.include <bsd.prog.mk>
|