freebsd-dev/etc/mail/Makefile
Gregory Neil Shapiro 88c75941e6 The rest of the changes needed to support the new version of sendmail (8.11.0).
Beyond changes to the build system, this includes fixing up the sample
freebsd.mc configuration for changes in defaults and syntax, removing
outdated documentation, and updating the release notes.
2000-08-12 22:39:25 +00:00

32 lines
716 B
Makefile

# $FreeBSD$
all: access.db mailertable.db virtusertable.db \
# /etc/mail/aliases.db
access.db: access
/usr/sbin/makemap hash access < access
virtusertable.db: virtusertable
/usr/sbin/makemap hash virtusertable < virtusertable
mailertable.db: mailertable
/usr/sbin/makemap hash mailertable < mailertable
#/etc/mail/aliases.db: /etc/mail/aliases
# newaliases
mailertable:
@echo Generating empty mailertable
sed -e 's/^/#/' < mailertable.sample > mailertable
access:
@echo Generating empty access
sed -e 's/^/#/' < access.sample > access
virtusertable:
@echo Generating empty virtusertable
sed -e 's/^/#/' < virtusertable.sample > virtusertable
clean:
rm -f access.db virtusertable.db mailertable.db