]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/mailwrapper/Makefile
Add two missing eventhandler.h headers
[FreeBSD/FreeBSD.git] / usr.sbin / mailwrapper / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .if ${MK_MAILWRAPPER} != "no"
6 PROG=   mailwrapper
7 MAN=    mailwrapper.8
8
9 LIBADD= util
10 .endif
11
12 .if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no"
13 SYMLINKS=       ../sbin/mailwrapper /usr/bin/mailq \
14                 ../sbin/mailwrapper /usr/bin/newaliases \
15                 mailwrapper /usr/sbin/hoststat \
16                 mailwrapper /usr/sbin/purgestat \
17                 mailwrapper /usr/sbin/sendmail
18
19 .if ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} != "no"
20 SYMLINKS+=      ../libexec/sendmail/sendmail ${BINDIR}/mailwrapper
21 .endif
22 .endif
23
24 .if ${MK_MAILWRAPPER} != "no" && ${MK_SENDMAIL} == "no"
25 SYMLINKS+=      ..${BINDIR}/mailwrapper /bin/rmail
26 .endif
27
28 .if ${MK_MAILWRAPPER} != "no"
29 .if !exists(${DESTDIR}/etc/mail/mailer.conf)
30 FILES=          ${SRCTOP}/etc/mail/mailer.conf
31 FILESDIR=       /etc/mail
32 FILESMODE=      644
33 .endif
34 .endif
35
36 .include <bsd.prog.mk>