diff options
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r-- | doc/examples/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 351d802da..f87811d3f 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -16,7 +16,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 = base base64 bzip encrypt decrypt fips140 xor_ciph +MISC_EX = factor base base64 bzip encrypt decrypt fips140 xor_ciph PROGS = $(X509_EX) $(RSA_EX) $(DSA_EX) $(DH_EX) $(HASH_EX) $(MISC_EX) @@ -75,6 +75,10 @@ fips140: fips140.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ +factor: factor.cpp + $(CXX) $(FLAGS) $? $(LIBS) -o $@ + @$(STRIP) $@ + hash: hash.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ |