# HG changeset patch # User Matthew Wild # Date 1291661303 0 # Node ID 5bca5f90286f00b7a1b6a67822f33d62163831f8 # Parent 23c6ce0e3f20bd678270154a2e34d8ac4bce8eb6 certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file (thanks deryni/Zash) diff -r 23c6ce0e3f20 -r 5bca5f90286f certs/Makefile --- a/certs/Makefile Mon Dec 06 17:32:35 2010 +0000 +++ b/certs/Makefile Mon Dec 06 18:48:23 2010 +0000 @@ -11,6 +11,8 @@ # signing request that you can submit to a CA, or `make yourhost.cert` # to generate a self signed certificate. +.PRECIOUS: %.cnf %.key + # To request a cert %.csr: %.cnf %.key openssl req -new -key $(lastword $^) -out $@ -utf8 -config $(firstword $^)