summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-24 13:43:43 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-24 18:38:58 +0200
commitffb3e747f8b50ca18701530d1729a4ee3aa4ae69 (patch)
treeefa9b3552566ce2891c1c105cd9fd5f4c3baa269 /examples/Makefile
parent4b45720ea1dffc3514c81439c7f93928d05c5521 (diff)
downloadcryptodev-linux-ffb3e747f8b50ca18701530d1729a4ee3aa4ae69.tar.gz
cryptodev-linux-ffb3e747f8b50ca18701530d1729a4ee3aa4ae69.tar.xz
cryptodev-linux-ffb3e747f8b50ca18701530d1729a4ee3aa4ae69.zip
Added a support for reading session data directly from userspace.
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index c65297f..f482649 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -1,7 +1,7 @@
CC = gcc
CFLAGS = -Wall -g -O2
-progs := cipher hmac ncr pk speed
+progs := cipher hmac ncr pk speed ncr-direct
all: $(progs)
@@ -17,15 +17,19 @@ hmac: hmac.c
ncr: ncr.c
$(CC) $(CFLAGS) $< -o $@
+ncr-direct: ncr-direct.c
+ $(CC) $(CFLAGS) $< -o $@
+
pk: pk.c
$(CC) $(CFLAGS) $< -o $@ -L/usr/local/lib -lgnutls
check: $(progs)
./ncr
+ ./ncr-direct
./pk
./cipher
./hmac
./speed
clean:
- rm -f *.o *~ hmac cipher ncr pk speed
+ rm -f *.o *~ hmac cipher ncr pk speed ncr-direct