88c75941e6
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.
32 lines
716 B
Makefile
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
|