diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-31 08:05:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-31 08:05:03 +0000 |
commit | 8d839d4fff7995d81a8d242a04d2faa6d790f64e (patch) | |
tree | d2bf958036a5c4279395a37967262e253e72b168 /usr.sbin | |
parent | 3ceba3851ab88af5d9dd6097cae252255e5a278a (diff) |
use YP, install nicely
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sendmail/src/Makefile | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/usr.sbin/sendmail/src/Makefile b/usr.sbin/sendmail/src/Makefile index 0a875a2bcc1..bc81917864c 100644 --- a/usr.sbin/sendmail/src/Makefile +++ b/usr.sbin/sendmail/src/Makefile @@ -1,9 +1,10 @@ -# @(#)Makefile 8.7 (Berkeley) 10/31/95 - -######################################################################### -# This Makefile is for 4.4BSD only!!! For all other systems, use # -# the "makesendmail" script. # -######################################################################### +# $NetBSD: Makefile,v 1.25 1996/01/29 04:58:23 mrg Exp $ +# +# NetBSD Makefile +# +# @(#)Makefile.NetBSD 8.3 (Berkeley) 9/13/95 +# @Id: Makefile.NetBSD,v 1.3 1994/02/01 05:33:44 glass Exp $ +# PROG= sendmail @@ -15,7 +16,7 @@ PROG= sendmail # databases are read, but the new format will be used on any rebuilds. On # really gnarly systems, you can set this to null; it will crawl like a high # spiral snail, but it will work. -DBMDEF= -DNEWDB +DBMDEF= -DNEWDB -DNIS CFLAGS+=-I${.CURDIR} ${DBMDEF} -DNETISO @@ -27,17 +28,18 @@ SRCS= alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \ MAN= aliases.5 mailq.1 newaliases.1 sendmail.8 LINKS= /usr/sbin/sendmail /usr/bin/newaliases \ /usr/sbin/sendmail /usr/bin/mailq +INSTALL=install BINDIR= /usr/sbin BINOWN= root BINGRP= kmem BINMODE=6555 beforeinstall: -# install -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ +# ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ # ${DESTDIR}/etc/sendmail.fc - install -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ ${DESTDIR}/var/log/sendmail.st - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/sendmail.hf \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/sendmail.hf \ ${DESTDIR}/usr/share/misc .include <bsd.prog.mk> |