freebsd-dev/usr.sbin/mailwrapper/Makefile
Peter Wemm 1538c4ee35 Preempt one brucification - I was missing a ${DESTDIR}. I hate merging
two sets of changes from different trees.
1999-12-29 18:51:36 +00:00

20 lines
433 B
Makefile

# $FreeBSD$
PROG= mailwrapper
MAN8= mailwrapper.8
DPADD+= ${LIBUTIL}
LDADD+= -lutil
SYMLINKS= ${BINDIR}/mailwrapper /usr/sbin/sendmail \
${BINDIR}/mailwrapper /usr/bin/newaliases \
${BINDIR}/mailwrapper /usr/bin/mailq
afterinstall:
@if [ ! -f ${DESTDIR}/etc/mail/mailer.conf ]; then \
${INSTALL} -c -o root -g wheel -m 644 \
${.CURDIR}/../../etc/mail/mailer.conf ${DESTDIR}/etc/mail; \
fi
.include <bsd.prog.mk>