blob: e223561965291716a58db588cc600311ff32095d (
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
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.4 2000/05/02 13:16:56 perry Exp $
# Note that the order here is picked to look much like that in the
# original Makefile.in in order to make it easier to visually compare
# when updating to a new version of Postfix.
# The first four of these are libraries and have to be built first.
SUBDIR= util global dns masterlib master postfix sendmail error \
pickup cleanup smtpd local trivial-rewrite qmgr smtp bounce pipe \
showq postalias postcat postconf postdrop postkick postlock postlog \
postmap postsuper man conf # postfix-script
# We don't want to build postfix-script (at least for now) because
# we're now treating it as a configuration file, per Wietse Venema's
# request. We now have conf/Makefile install a copy into
# share/examples/postfix, and postfix-etc/Makefile (only called by
# make distribution) installs a copy in /etc/postfix
# also not built: smtpstone (unneeded), spawn (experimental),
# and html (unsure what to do with it (yet))
# The distribution: target is invoked from the make distribution
# target in src/etc/Makefile. It is there for building the /etc/
# set. You don't want to run it normally as it would blow away your
# /etc/postfix directory.
distribution:
cd ${.CURDIR}/postfix-etc; ${MAKE} install
.include <bsd.subdir.mk>
|