- Added crl_app program to allow easy reading and printing of X509 CRLs from file

diff --git a/programs/Makefile b/programs/Makefile
index 9ad47ec..6cc1389 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -18,7 +18,7 @@
 	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 @@
 	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)