diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-06 18:48:23 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-06 18:48:23 +0000 |
commit | b737fdbee9134c90f7972bc977d46ea06adf21f0 (patch) | |
tree | 63e482b565c6489d2196f989b63e39b9de17795b | |
parent | e68d8c4c3c8030e2cabd5660c28991c408095279 (diff) | |
download | prosody-b737fdbee9134c90f7972bc977d46ea06adf21f0.tar.gz prosody-b737fdbee9134c90f7972bc977d46ea06adf21f0.zip |
certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file (thanks deryni/Zash)
-rw-r--r-- | certs/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
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 $^) |