summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-19 09:48:52 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-19 09:54:42 +0200
commit43bd4904b4a4ea8218127dc14e12141997beef36 (patch)
tree9d1c5cd1b57b1355ae6cc562d2ad268ee7a383ba /examples/Makefile
parentf4eb4e58648a9746f7a4ca20cea716dd69137fad (diff)
downloadcryptodev-linux-43bd4904b4a4ea8218127dc14e12141997beef36.tar.gz
cryptodev-linux-43bd4904b4a4ea8218127dc14e12141997beef36.tar.xz
cryptodev-linux-43bd4904b4a4ea8218127dc14e12141997beef36.zip
Backported zero copy /dev/crypto operations from master.
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 9dce9b7..c65297f 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -1,13 +1,16 @@
CC = gcc
CFLAGS = -Wall -g -O2
-progs := cipher hmac ncr pk
+progs := cipher hmac ncr pk speed
all: $(progs)
cipher: cipher.c
$(CC) $(CFLAGS) $< -o $@
+speed: speed.c
+ $(CC) $(CFLAGS) $< -o $@
+
hmac: hmac.c
$(CC) $(CFLAGS) $< -o $@
@@ -22,6 +25,7 @@ check: $(progs)
./pk
./cipher
./hmac
+ ./speed
clean:
- rm -f *.o *~ hmac cipher ncr pk
+ rm -f *.o *~ hmac cipher ncr pk speed