summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 33a67bc..69c1f5c 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -3,19 +3,13 @@ CFLAGS = -Wall -g -O2 -I../userspace
GNUTLS_LDFLAGS = -L/usr/local/lib -lgnutls
USERSPACE_LDFLAGS = -L../userspace -lcryptodev
-progs := cipher hmac ncr ncr_lib pk pk_lib speed
+progs := ncr ncr_lib pk pk_lib speed
all: $(progs)
-cipher: cipher.c
- $(CC) $(CFLAGS) $< -o $@
-
speed: speed.c
$(CC) $(CFLAGS) $< -o $@
-hmac: hmac.c
- $(CC) $(CFLAGS) $< -o $@
-
ncr: ncr.c
$(CC) $(CFLAGS) $< -o $@
@@ -33,8 +27,6 @@ check: $(progs)
LD_LIBRARY_PATH=../userspace ./ncr_lib
./pk
LD_LIBRARY_PATH=../userspace ./pk_lib
- ./cipher
- ./hmac
./speed
clean: