Makefile (0b87f79976047c8f4332bbf7dc03146f6b0de79f) | Makefile (d2893b161bbea64e099654c0dd78073cfb5667b0) |
---|---|
1# 2# $FreeBSD$ 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# --- 173 unchanged lines hidden (view full) --- 182.ifdef SENDMAIL_SET_USER_ID 183install: install-cf 184.else 185install: install-cf install-submit-cf 186.endif 187 188install-cf: ${INSTALL_CF} 189.if ${INSTALL_CF} != /etc/mail/sendmail.cf | 1# 2# $FreeBSD$ 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# --- 173 unchanged lines hidden (view full) --- 182.ifdef SENDMAIL_SET_USER_ID 183install: install-cf 184.else 185install: install-cf install-submit-cf 186.endif 187 188install-cf: ${INSTALL_CF} 189.if ${INSTALL_CF} != /etc/mail/sendmail.cf |
190 ${INSTALL} ${COPY} -m ${SHAREMODE} ${INSTALL_CF} /etc/mail/sendmail.cf | 190 ${INSTALL} -m ${SHAREMODE} ${INSTALL_CF} /etc/mail/sendmail.cf |
191.endif 192 193 194install-submit-cf: ${INSTALL_SUBMIT_CF} 195.ifdef SENDMAIL_SET_USER_ID 196 @echo ">>> ERROR: You should not create a submit.cf file if you are using a" 197 @echo " set-user-ID sendmail binary (SENDMAIL_SET_USER_ID is set" 198 @echo " in make.conf)." 199 @false 200.else 201.if ${INSTALL_SUBMIT_CF} != /etc/mail/submit.cf | 191.endif 192 193 194install-submit-cf: ${INSTALL_SUBMIT_CF} 195.ifdef SENDMAIL_SET_USER_ID 196 @echo ">>> ERROR: You should not create a submit.cf file if you are using a" 197 @echo " set-user-ID sendmail binary (SENDMAIL_SET_USER_ID is set" 198 @echo " in make.conf)." 199 @false 200.else 201.if ${INSTALL_SUBMIT_CF} != /etc/mail/submit.cf |
202 ${INSTALL} ${COPY} -m ${SHAREMODE} ${INSTALL_SUBMIT_CF} /etc/mail/submit.cf | 202 ${INSTALL} -m ${SHAREMODE} ${INSTALL_SUBMIT_CF} /etc/mail/submit.cf |
203.endif 204.endif 205 206aliases: ${SENDMAIL_ALIASES}.db 207 208maps: ${SENDMAIL_MAP_OBJ} 209 210start start-mta start-mspq: --- 27 unchanged lines hidden --- | 203.endif 204.endif 205 206aliases: ${SENDMAIL_ALIASES}.db 207 208maps: ${SENDMAIL_MAP_OBJ} 209 210start start-mta start-mspq: --- 27 unchanged lines hidden --- |