1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1997-10-19 16:40:10 +00:00
|
|
|
|
2000-03-12 22:08:35 +00:00
|
|
|
all: access.db mailertable.db virtusertable.db \
|
|
|
|
# /etc/aliases.db
|
1997-10-19 16:40:10 +00:00
|
|
|
|
2000-03-12 22:08:35 +00:00
|
|
|
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/aliases.db: /etc/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
|