mail: Send mail with the correct envelope sender.
[newsgate] / Makefile
CommitLineData
a682e5d7
MW
1## makefile for newsgate
2
70d89fa0 3TARGETS = config.files auth.cdb groups.cdb newsconf.stamp .qmail-default
a682e5d7 4
70d89fa0
MW
5all: $(TARGETS)
6
7config.files .qmail-default: config
a682e5d7 8 splitconf config
70d89fa0 9 update-addrcheck
a682e5d7
MW
10
11newsconf.stamp: groups
12 bin/mkgroups
13 touch newsconf.stamp
14
15auth.cdb: config.files
16 cdb-list auth.cdb auth
17
18groups.cdb: groups
19 bin/mkcdb groups
70d89fa0
MW
20
21clean:
22 splitconf -d config
23 rm -f $(TARGETS)
24
25.PHONY: all clean