Deleted Added
full compact
Makefile (130157) Makefile (271771)
1#
1#
2# $FreeBSD: head/etc/mail/Makefile 130157 2004-06-06 17:28:31Z gshapiro $
2# $FreeBSD: head/etc/mail/Makefile 271771 2014-09-18 14:41:57Z will $
3#
4# This Makefile provides an easy way to generate the configuration
5# file and database maps for the sendmail(8) daemon.
6#
7# The user-driven targets are:
8#
9# all - Build cf, maps and aliases
10# cf - Build the .cf file from .mc file

--- 53 unchanged lines hidden (view full) ---

64# uucpdomain, virtusertable
65#
66
67.ifndef SENDMAIL_MC
68SENDMAIL_MC!= hostname
69SENDMAIL_MC:= ${SENDMAIL_MC}.mc
70
71${SENDMAIL_MC}:
3#
4# This Makefile provides an easy way to generate the configuration
5# file and database maps for the sendmail(8) daemon.
6#
7# The user-driven targets are:
8#
9# all - Build cf, maps and aliases
10# cf - Build the .cf file from .mc file

--- 53 unchanged lines hidden (view full) ---

64# uucpdomain, virtusertable
65#
66
67.ifndef SENDMAIL_MC
68SENDMAIL_MC!= hostname
69SENDMAIL_MC:= ${SENDMAIL_MC}.mc
70
71${SENDMAIL_MC}:
72 cp freebsd.mc ${SENDMAIL_MC}
72 cp -f freebsd.mc ${SENDMAIL_MC}
73.endif
74
75.ifndef SENDMAIL_SUBMIT_MC
76SENDMAIL_SUBMIT_MC!= hostname
77SENDMAIL_SUBMIT_MC:= ${SENDMAIL_SUBMIT_MC}.submit.mc
78
79${SENDMAIL_SUBMIT_MC}:
73.endif
74
75.ifndef SENDMAIL_SUBMIT_MC
76SENDMAIL_SUBMIT_MC!= hostname
77SENDMAIL_SUBMIT_MC:= ${SENDMAIL_SUBMIT_MC}.submit.mc
78
79${SENDMAIL_SUBMIT_MC}:
80 cp freebsd.submit.mc ${SENDMAIL_SUBMIT_MC}
80 cp -f freebsd.submit.mc ${SENDMAIL_SUBMIT_MC}
81.endif
82
83INSTALL_CF= ${SENDMAIL_MC:R}.cf
84
85.ifndef SENDMAIL_SET_USER_ID
86INSTALL_SUBMIT_CF= ${SENDMAIL_SUBMIT_MC:R}.cf
87.endif
88

--- 160 unchanged lines hidden ---
81.endif
82
83INSTALL_CF= ${SENDMAIL_MC:R}.cf
84
85.ifndef SENDMAIL_SET_USER_ID
86INSTALL_SUBMIT_CF= ${SENDMAIL_SUBMIT_MC:R}.cf
87.endif
88

--- 160 unchanged lines hidden ---