summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 601fb07..3190c4a 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -1,12 +1,14 @@
KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build
-hostprogs := cipher hmac
+hostprogs := cipher hmac new
example-cipher-objs := cipher.o
example-hmac-objs := hmac.o
+new-objs := new.o
check: $(hostprogs)
+ ./new
./cipher
./hmac
clean:
- rm -f *.o *~ hmac cipher
+ rm -f *.o *~ hmac cipher new