From: Matthew Wild Date: Mon, 6 Dec 2010 18:48:23 +0000 (+0000) Subject: certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file... X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=409f43b04a5e2620c1a992ce17f203d8f04ee8d3;p=prosody.git certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file (thanks deryni/Zash) --- diff --git a/certs/Makefile b/certs/Makefile index 17b9dfa9..54835883 100644 --- a/certs/Makefile +++ b/certs/Makefile @@ -11,6 +11,8 @@ keysize=2048 # 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 $^)