blob: c59f46f2b7c3c597b8c5d94faa54e83e8aa7fb66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.6 2002/09/19 03:09:48 lukem Exp $
# This Makefile is called only by src/etc, not by usr.sbin/postfix/Makefile
.include <bsd.own.mk>
DIST= ${NETBSDSRCDIR}/gnu/dist/postfix/conf
.PATH: ${DIST}
BINDIR= ${PFIX_ETCDIR}
# These two .cf files are the only ones absolutely needed. It is not
# clear if we should be installing things like the transport and
# virtual file, etc. I contend we shouldn't, since they contain no
# real information at all, just the man page sources, and are not
# needed by default.
FILES= main.cf master.cf postfix-files README
# And of course, we need the postfix-script file. It isn't clear that
# this should be considered configuration and not a candidate for
# libexec, but Wietse explicitly wants it this way, since he wants
# the user to be able to use postfix-script as a place to install hooks.
SCRIPTS= postfix-script post-install
.include <bsd.prog.mk>
|