blob: 4834059a35b432338918e772789c9d5cc64799fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.4 2001/12/20 22:18:50 yamt Exp $
PROG= master
DIST= ${.CURDIR}/../../../dist/postfix/src/${PROG}
.PATH: ${DIST}
BINDIR= ${PFIX_LIBEXECDIR}
SRCS= master.c master_conf.c master_ent.c master_sig.c master_avail.c \
master_spawn.c master_service.c master_status.c master_listen.c \
master_proto.c single_server.c multi_server.c master_vars.c \
master_wakeup.c
DPADD+= ${LIBPGLOBAL} ${LIBPUTIL}
LDADD+= ${LIBPGLOBAL} ${LIBPUTIL}
NOMAN=# defined
.include <bsd.prog.mk>
|