summaryrefslogtreecommitdiffstats
path: root/demos/bio/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-02-26 16:33:05 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-02-26 16:34:23 +0000
commitc46990b13b0d29c8cb868ca9a4aea0150369a716 (patch)
tree842e58cfebaa26db895ad58576e06b1c7ed45a0c /demos/bio/Makefile
parent1510b1f4c22ea80b22f6a383f15b11ce3eb0539b (diff)
Demo code for SSL_CONF API
Two example programs one for command line argument processing and one for configuration file processing. (cherry picked from commit 3646578ae7e29230d7b05a5487ad12990b2ae688)
Diffstat (limited to 'demos/bio/Makefile')
-rw-r--r--demos/bio/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/demos/bio/Makefile b/demos/bio/Makefile
index 4351540532..f8c8f03517 100644
--- a/demos/bio/Makefile
+++ b/demos/bio/Makefile
@@ -1,7 +1,7 @@
CC=cc
CFLAGS= -g -I../../include
-LIBS= -L../.. ../../libssl.a ../../libcrypto.a
-EXAMPLES=saccept sconnect
+LIBS= -L../.. ../../libssl.a ../../libcrypto.a -ldl
+EXAMPLES=saccept sconnect client-arg client-conf
all: $(EXAMPLES)
@@ -11,6 +11,12 @@ saccept: saccept.o
sconnect: sconnect.o
$(CC) -o sconnect sconnect.o $(LIBS)
+client-arg: client-arg.o
+ $(CC) -o client-arg client-arg.o $(LIBS)
+
+client-conf: client-conf.o
+ $(CC) -o client-conf client-conf.o $(LIBS)
+
clean:
rm -f $(EXAMPLES) *.o