chiark
/
gitweb
/
~mdw
/
odin-cgi
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
bin/pastebin.userv: Correct usage and parsing for the `update' command.
[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)