diff options
author | lloyd <[email protected]> | 2006-09-07 03:50:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-07 03:50:23 +0000 |
commit | dccc9a91a5163b538b8b6cd2b2251522878ee42e (patch) | |
tree | 72e6606c20c297090892201a0c394ec5e2927c1d /doc/examples | |
parent | 3dd84dfbeb1fc7b3f4ca1385b9195efe210b8d05 (diff) |
Remove the (deleted) fips140 example from the Makefile
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 8b0c8ff40..78fc65a35 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -14,7 +14,7 @@ RSA_EX = rsa_kgen rsa_enc rsa_dec DSA_EX = dsa_kgen dsa_sign dsa_ver DH_EX = dh HASH_EX = hash hash_fd hasher hasher2 stack -MISC_EX = factor base base64 bzip encrypt decrypt fips140 xor_ciph +MISC_EX = factor base base64 bzip encrypt decrypt xor_ciph PROGS = $(X509_EX) $(RSA_EX) $(DSA_EX) $(DH_EX) $(HASH_EX) $(MISC_EX) @@ -69,10 +69,6 @@ encrypt: encrypt.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ -fips140: fips140.cpp - $(CXX) $(FLAGS) $? $(LIBS) -o $@ - @$(STRIP) $@ - factor: factor.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ |