20 lines
436 B
Makefile
20 lines
436 B
Makefile
# $NetBSD: Makefile,v 1.1 2000/04/30 21:22:02 perry Exp $
|
|
|
|
PROG= master
|
|
|
|
DIST= ${.CURDIR}/../../../dist/postfix/${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_vars.c master_wakeup.c
|
|
|
|
DPADD+= ${LIBPGLOBAL} ${LIBPUTIL}
|
|
LDADD+= ${LIBPGLOBAL} ${LIBPUTIL}
|
|
|
|
NOMAN=1
|
|
|
|
.include <bsd.prog.mk>
|