chiark / gitweb /
New things for a mail redirection service, with randomized local parts.
[odin-cgi] / Makefile
CommitLineData
c86aee46
MW
1### -*-makefile-*-
2
3all::
4
5TARGETS += exim-filter
6exim-filter: exim-filter.in passwds Makefile
7 set -e; . ./passwds; umask 077; \
8 sed "s;@PASSWORD@;$$exim_db_passwd;g" $< >$@.new; \
9 mv $@.new $@
10
11CLEAN += $(TARGETS)
12all:: $(TARGETS)
13clean::; rm -f $(CLEAN)