The unified diff between revisions [63c067b5..] and [67768644..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'doc/examples/Makefile'

#
#
# patch "doc/examples/Makefile"
#  from [afe3c8a9246d9f6b1b44af04fc4fcd972699637b]
#    to [76067eb1e3aa94d93bb5c2deca4ce8c0de0adb62]
#
============================================================
--- doc/examples/Makefile	afe3c8a9246d9f6b1b44af04fc4fcd972699637b
+++ doc/examples/Makefile	76067eb1e3aa94d93bb5c2deca4ce8c0de0adb62
@@ -9,15 +9,11 @@ FLAGS     = $(INCLUDES) $(CFLAGS) -I$(BO
 LIBS      = `$(BOTAN_DIR)/botan-config --libs`
 FLAGS     = $(INCLUDES) $(CFLAGS) -I$(BOTAN_DIR)/build/include -L$(BOTAN_DIR)

-X509_EX   = ca pkcs10 self_sig x509info asn1
-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 xor_ciph
+PROGS = asn1 base base64 bzip ca decrypt dh dsa_kgen dsa_sign dsa_ver	\
+	encrypt factor hash hash_fd hasher hasher2 \
+	passhash pkcs10 rsa_dec rsa_enc rsa_kgen self_sig stack		\
+	x509info xor_ciph

-PROGS     = $(X509_EX) $(RSA_EX) $(DSA_EX) $(DH_EX) $(HASH_EX) $(MISC_EX)
-
 STRIP     = true

 all: $(PROGS)
@@ -89,6 +85,18 @@ hasher2: hasher2.cpp
 	$(CXX) $(FLAGS) $? $(LIBS) -o $@
 	@$(STRIP) $@

+pass_dec: pass_dec.cpp
+	$(CXX) $(FLAGS) $? $(LIBS) -o $@
+	@$(STRIP) $@
+
+pass_enc: pass_enc.cpp
+	$(CXX) $(FLAGS) $? $(LIBS) -o $@
+	@$(STRIP) $@
+
+passhash: passhash.cpp
+	$(CXX) $(FLAGS) $? $(LIBS) -o $@
+	@$(STRIP) $@
+
 pkcs10: pkcs10.cpp
 	$(CXX) $(FLAGS) $? $(LIBS) -o $@
 	@$(STRIP) $@