# HG changeset patch # User Matthew Wild # Date 1291661303 0 # Node ID 8cc803294fc42f8a8114df1958ec78c3d2545ccb # Parent d02bb4839ac4456e89e3290dfef93fcdd0eb2c0f certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file (thanks deryni/Zash) diff -r d02bb4839ac4 -r 8cc803294fc4 certs/Makefile --- a/certs/Makefile Fri Dec 03 16:40:42 2010 +0100 +++ 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 $^)