From 43bd4904b4a4ea8218127dc14e12141997beef36 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Mon, 19 Jul 2010 09:48:52 +0200 Subject: Backported zero copy /dev/crypto operations from master. --- examples/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'examples/Makefile') 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 -- cgit