diff options
Diffstat (limited to 'usr.sbin/sendmail/src/Makefile.dist')
| -rw-r--r-- | usr.sbin/sendmail/src/Makefile.dist | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/sendmail/src/Makefile.dist b/usr.sbin/sendmail/src/Makefile.dist index e289a7d065b..127e6a7bd7f 100644 --- a/usr.sbin/sendmail/src/Makefile.dist +++ b/usr.sbin/sendmail/src/Makefile.dist @@ -5,7 +5,7 @@ # old make program (I recommend that you get and port the new make if you # are going to be doing any signficant work on sendmail). # -# @(#)Makefile.dist 8.7 (Berkeley) 9/3/93 +# @(#)Makefile.dist 8.9 (Berkeley) 12/20/93 # # use O=-O (usual) or O=-g (debugging) @@ -80,14 +80,16 @@ newaliases.0: newaliases.1 sendmail.0: sendmail.8 nroff -h -mandoc sendmail.8 > sendmail.0 +INSTALL=install + install: install-sendmail install-docs install-sendmail: sendmail - install -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} sendmail ${BINDIR} + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} sendmail ${BINDIR} for i in ${LINKS}; do rm -f $$i; ln -s ${BINDIR}/sendmail $$i; done - install -c -o ${BINOWN} -g ${BINGRP} -m 666 /dev/null \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ ${STDIR}/sendmail.st - install -c -o ${BINOWN} -g ${BINGRP} -m 444 sendmail.hf ${HFDIR} + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 sendmail.hf ${HFDIR} # doesn't actually install them -- you may want to install pre-nroff versions install-docs: aliases.0 newaliases.0 sendmail.0 |
