Fix dependencies and cleanup spacing in the file

This commit is contained in:
Gregory Neil Shapiro 2001-02-28 04:04:07 +00:00
parent 457767e4ff
commit fab9e3acac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73210

View File

@ -1,19 +1,22 @@
# @(#)Makefile 8.19 (Berkeley) 1/14/97
# $FreeBSD$
M4= m4
CFDIR= ${.CURDIR}/../../contrib/sendmail/cf
CHMOD= chmod
ROMODE= 444
RM= rm -f
M4= m4
CHMOD= chmod
ROMODE= 444
RM= rm -f
CFDIR= ${.CURDIR}/../../contrib/sendmail/cf
.SUFFIXES: .mc .cf
# this is overkill, but....
M4FILES!= find ${CFDIR} -type f -name '*.m4' -print
.mc.cf:
$(RM) ${.TARGET}
.SUFFIXES: .mc .cf
.mc.cf: ${M4FILES}
${RM} ${.TARGET}
(cd ${.CURDIR} && \
$(M4) -D_CF_DIR_=${CFDIR}/ ${CFDIR}/m4/cf.m4 ${@:R}.mc) > ${.TARGET}
$(CHMOD) $(ROMODE) ${.TARGET}
${M4} -D_CF_DIR_=${CFDIR}/ ${CFDIR}/m4/cf.m4 ${@:R}.mc) > ${.TARGET}
${CHMOD} ${ROMODE} ${.TARGET}
ALL= freebsd.cf
@ -29,35 +32,31 @@ INSTALL_CF= ${SENDMAIL_CF}
.endif
.endif
.if defined(INSTALL_CF)
ALL+= ${INSTALL_CF}
.endif
ALL+= ${INSTALL_CF}
# Additional .cf files to build
.if defined(SENDMAIL_ADDITIONAL_MC)
ALL+= ${SENDMAIL_ADDITIONAL_MC:S/.mc$/.cf/g}
ALL+= ${SENDMAIL_ADDITIONAL_MC:S/.mc$/.cf/g}
.endif
CLEANFILES+=$(ALL)
CLEANFILES+= ${ALL}
all: $(ALL)
all: ${ALL}
depend:
.if defined(INSTALL_CF)
install: ${INSTALL_CF}
install: ${INSTALL_CF}
.if (defined(SENDMAIL_MC) && defined(SENDMAIL_CF))
@echo ">>> ERROR: Both SENDMAIL_CF and SENDMAIL_MC can not be set"
@false
.endif
.if defined(INSTALL_CF)
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 ${INSTALL_CF} \
${DESTDIR}/etc/mail/sendmail.cf
.else
install:
.endif
# Helper for src/etc/Makefile
distribution: freebsd.cf freebsd.mc
distribution: freebsd.cf freebsd.mc ${INSTALL_CF}
.if (defined(SENDMAIL_MC) && defined(SENDMAIL_CF))
@echo ">>> ERROR: Both SENDMAIL_CF and SENDMAIL_MC can not be set"
@false
@ -76,9 +75,4 @@ distribution: freebsd.cf freebsd.mc
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
${DESTDIR}/var/log/sendmail.st
# this is overkill, but....
M4FILES!= find ${CFDIR} -type f -name '*.m4' -print
$(ALL): $(M4FILES)
.include <bsd.prog.mk>