New things for a mail redirection service, with randomized local parts.
[odin-cgi] / Makefile
1 ### -*-makefile-*-
2
3 all::
4
5 TARGETS += exim-filter
6 exim-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
11 CLEAN += $(TARGETS)
12 all:: $(TARGETS)
13 clean::; rm -f $(CLEAN)