bin/pastebin.userv: Don't throw the supplied content away.
[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 chmod 640 $@.new; chgrp Debian-exim $@.new; \
10 mv $@.new $@
11
12 CLEAN += $(TARGETS)
13 all:: $(TARGETS)
14 clean::; rm -f $(CLEAN)