chiark
/
gitweb
/
~mdw
/
secnet
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Update crypto code from Catacomb 2.5.0.
[secnet]
/
mdw-test
/
Makefile
1
### -*-makefile-*-
2
3
all::
4
5
TARGETS += sites.conf
6
sites.conf: sites ../make-secnet-sites
7
../make-secnet-sites sites >$@.new && mv $@.new $@
8
9
TARGETS += alice.priv bob.priv
10
alice.priv bob.priv: %.priv: keyring mk-sshv1-rsapriv
11
./mk-sshv1-rsapriv keyring $* $@
12
13
all:: $(TARGETS)
14
clean::; rm -f $(TARGETS)
15
.PHONY: all clean