summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
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