mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-11 03:46:28 +00:00
- Added crl_app program to allow easy reading and printing of X509 CRLs from file
This commit is contained in:
@@ -18,7 +18,7 @@ APPS = aes/aescrypt2 aes/crypt_and_hash \
|
||||
ssl/ssl_server random/gen_random \
|
||||
test/ssl_cert_test test/benchmark \
|
||||
test/selftest test/ssl_test \
|
||||
x509/cert_app
|
||||
x509/cert_app x509/crl_app
|
||||
|
||||
.SILENT:
|
||||
|
||||
@@ -116,6 +116,10 @@ x509/cert_app: x509/cert_app.c ../library/libpolarssl.a
|
||||
echo " CC x509/cert_app.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) x509/cert_app.c $(LDFLAGS) -o $@
|
||||
|
||||
x509/crl_app: x509/crl_app.c ../library/libpolarssl.a
|
||||
echo " CC x509/crl_app.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) x509/crl_app.c $(LDFLAGS) -o $@
|
||||
|
||||
clean:
|
||||
rm -f $(APPS)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user