Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds the
[unix-history] / usr.sbin / sendmail / src / Makefile.Utah
CommitLineData
3a363396
NW
1# @(#)Makefile 8.1 (Berkeley) 6/7/93
2
3PROG= sendmail
4
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 -DNDBM -DOLD_NEWDB
14
15CFLAGS+=-I${.CURDIR} ${DBMDEF} -Dsetpgid=setpgrp
16
17SRCS= alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \
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}
23LDADD=
24MAN1= newaliases.0
25MAN5= aliases.0
26MAN8= sendmail.0
27LINKS= ${DESTDIR}/usr/sbin/sendmail ${DESTDIR}/usr/bin/newaliases \
28 ${DESTDIR}/usr/sbin/sendmail ${DESTDIR}/usr/bin/mailq
29BINDIR= /usr/sbin
30BINOWN= root
31BINGRP= kmem
32BINMODE=6555
33
34beforeinstall:
35# install -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
36# ${DESTDIR}/etc/sendmail.fc
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>