Re: Using OpenSSL in a makefile?

2013-01-01 Thread Daode
|On Mon, Dec 31, 2012 at 1:58 PM, Walter H. walte...@mathemainzel.info \ |wrote: | Hello, | | why does the following makefile not succeed? | | ... | I have isolated the problem: | | openssl crl -noout -text -in $ $@ | exits with exit code 1 instead of 0, why? | | openssl crl -noout

Using OpenSSL in a makefile?

2012-12-31 Thread Walter H.
Hello, why does the following makefile not succeed? all: pckdCRL.zip .SUFFIXES: .SUFFIXES: .text .pem .crl .pem.crl: openssl crl -in $ -outform der -out $@ .pem.text: openssl crl -noout -text -in $ $@ pckdCRL.zip: rootCRL.pem rootCRL.crl rootCRL.text zip -9 -j pckdCRL.zip

Re: Using OpenSSL in a makefile?

2012-12-31 Thread Jeffrey Walton
On Mon, Dec 31, 2012 at 1:58 PM, Walter H. walte...@mathemainzel.info wrote: Hello, why does the following makefile not succeed? ... I have isolated the problem: openssl crl -noout -text -in $ $@ exits with exit code 1 instead of 0, why? openssl crl -noout -text -in $ -out $@ does the