summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7/Makefile.ssl
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-06-03 16:07:37 +0000
committerBen Laurie <ben@openssl.org>1999-06-03 16:07:37 +0000
commit213a75dbf21b8f641a9ee90cc12882fc429bb84b (patch)
tree539ca8d5397e71b0ed2e2e38a04ee742d2ded9a1 /crypto/pkcs7/Makefile.ssl
parent5c0a48655fc342086d4babb57fee8e052a7b2e2f (diff)
Make samples compile.
Diffstat (limited to 'crypto/pkcs7/Makefile.ssl')
-rw-r--r--crypto/pkcs7/Makefile.ssl14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/pkcs7/Makefile.ssl b/crypto/pkcs7/Makefile.ssl
index 4951888c67..436442a7a1 100644
--- a/crypto/pkcs7/Makefile.ssl
+++ b/crypto/pkcs7/Makefile.ssl
@@ -39,6 +39,20 @@ test:
all: lib
+testapps: enc dec sign verify
+
+enc: enc.o lib
+ $(CC) $(CFLAGS) -o enc enc.o $(LIB)
+
+dec: dec.o lib
+ $(CC) $(CFLAGS) -o dec dec.o $(LIB)
+
+sign: sign.o lib
+ $(CC) $(CFLAGS) -o sign sign.o $(LIB)
+
+verify: verify.o example.o lib
+ $(CC) $(CFLAGS) -o verify verify.o example.o $(LIB)
+
lib: $(LIBOBJ)
$(AR) $(LIB) $(LIBOBJ)
$(RANLIB) $(LIB)