chiark / gitweb /
Provide text2iaddr.
[secnet.git] / test-example / Makefile
1 TARGETS=sites.conf inside.key outside.key
2
3 all: $(TARGETS)
4
5 %.key: %.key.b64
6         base64 -d <$< >$@.new && mv -f $@.new $@
7
8 sites.conf: ../make-secnet-sites sites Makefile
9         ../make-secnet-sites sites sites.conf
10
11 clean:
12         rm -f *~ ./#*# *.new $(TARGETS)