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