This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / usr.sbin / sendmail / src / Makefile
CommitLineData
78ed81a3 1# @(#)Makefile 8.1 (Berkeley) 6/7/93
15637ed4
RG
2
3PROG= sendmail
4
78ed81a3 5# define the database format to use for aliases et al. Can be -DNEWDB (for
6# the new BSD database package -- this is preferred) or -DNDBM for the NDBM
7# database package. The old putrescent V7 DBM package is no longer
8# supported.
9# You can define both NEWDB and NDBM during a transition period; old
10# databases are read, but the new format will be used on any rebuilds. On
11# really gnarly systems, you can set this to null; it will crawl like a high
12# spiral snail, but it will work.
13DBMDEF= -DNEWDB
14
15CFLAGS+=-I${.CURDIR} ${DBMDEF} -DNETISO -DNO_SYSCONF
15637ed4
RG
16
17SRCS= alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \
78ed81a3 18 deliver.c domain.c envelope.c err.c headers.c macro.c main.c map.c \
19 mci.c parseaddr.c queue.c readcf.c recipient.c savemail.c srvrsmtp.c \
20 stab.c stats.c sysexits.c trace.c udb.c usersmtp.c \
21 util.c version.c
22DPADD= ${LIBDBM} ${LIBCOMPAT} ${LIBUTIL}
23LDADD= ${LIBUTIL}
24MAN1= newaliases.1
25MAN5= aliases.5
26MAN8= sendmail.8
27LINKS= /usr/sbin/sendmail /usr/bin/newaliases \
28 /usr/sbin/sendmail /usr/bin/mailq
15637ed4
RG
29BINDIR= /usr/sbin
30BINOWN= root
31BINGRP= kmem
32BINMODE=6555
33
34beforeinstall:
78ed81a3 35# install -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
36# ${DESTDIR}/etc/sendmail.fc
15637ed4
RG
37 install -c -o ${BINOWN} -g ${BINGRP} -m 666 /dev/null \
38 ${DESTDIR}/var/log/sendmail.st
39 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/sendmail.hf \
40 ${DESTDIR}/usr/share/misc
41
42.include <bsd.prog.mk>