Deleted Added
full compact
Makefile (50472) Makefile (57947)
1# $FreeBSD: head/etc/mail/Makefile 50472 1999-08-27 23:37:10Z peter $
1# $FreeBSD: head/etc/mail/Makefile 57947 2000-03-12 22:08:35Z rwatson $
2
2
3install:
4 /usr/sbin/makemap hash /etc/mail/access < /etc/mail/access.txt
3all: access.db mailertable.db virtusertable.db \
4# /etc/aliases.db
5
5
6all: install
6access.db: access
7 /usr/sbin/makemap hash access < access
8
9virtusertable.db: virtusertable
10 /usr/sbin/makemap hash virtusertable < virtusertable
11
12mailertable.db: mailertable
13 /usr/sbin/makemap hash mailertable < mailertable
14
15#/etc/aliases.db: /etc/aliases
16# newaliases
17
18mailertable:
19 @echo Generating empty mailertable
20 sed -e 's/^/#/' < mailertable.sample > mailertable
21
22access:
23 @echo Generating empty access
24 sed -e 's/^/#/' < access.sample > access
25
26virtusertable:
27 @echo Generating empty virtusertable
28 sed -e 's/^/#/' < virtusertable.sample > virtusertable
29
30clean:
31 rm -f access.db virtusertable.db mailertable.db