date and time created 94/02/26 09:31:33 by eric
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 27 Feb 1994 01:31:33 +0000 (17:31 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 27 Feb 1994 01:31:33 +0000 (17:31 -0800)
SCCS-vsn: usr.sbin/sendmail/src/Makefiles/Makefile.386BSD 8.1

usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.386BSD [new file with mode: 0644]

diff --git a/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.386BSD b/usr/src/usr.sbin/sendmail/src/Makefiles/Makefile.386BSD
new file mode 100644 (file)
index 0000000..409fa86
--- /dev/null
@@ -0,0 +1,42 @@
+#      @(#)Makefile.386BSD     8.1 (Berkeley) %G%
+
+PROG=  sendmail
+
+# define the database format to use for aliases et al.  Can be -DNEWDB (for
+# the new BSD database package -- this is preferred) or -DNDBM for the NDBM
+# database package.  The old putrescent V7 DBM package is no longer
+# supported.
+# You can define both NEWDB and NDBM during a transition period; old
+# 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
+
+CFLAGS+=-I${.CURDIR} ${DBMDEF} -DMIME
+
+SRCS=  alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \
+       deliver.c domain.c envelope.c err.c headers.c macro.c main.c map.c \
+       mci.c parseaddr.c queue.c readcf.c recipient.c savemail.c srvrsmtp.c \
+       stab.c stats.c sysexits.c trace.c udb.c usersmtp.c \
+       util.c version.c
+DPADD= 
+LDADD= $(LIBUTIL)
+MAN1=  newaliases.0 mailq.0
+MAN5=  aliases.0
+MAN8=  sendmail.0 
+LINKS= /usr/sbin/sendmail /usr/bin/newaliases \
+       /usr/sbin/sendmail /usr/bin/mailq
+BINDIR=        /usr/sbin
+BINOWN=        root
+BINGRP=        kmem
+BINMODE=6555
+
+beforeinstall:
+#      install -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
+#          ${DESTDIR}/etc/sendmail.fc
+       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 \
+           ${DESTDIR}/usr/share/misc
+
+.include <bsd.prog.mk>