certs/Makefile: Add .PRECIOUS to stop make deleting the key as an intermediate file (thanks deryni/Zash)

This commit is contained in:
Matthew Wild 2010-12-06 18:48:23 +00:00
parent e68d8c4c3c
commit b737fdbee9

View file

@ -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 $^)