From cceea9e9eacfa8d165d4ad11900f061ac6401a11 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sat, 20 Feb 2010 10:49:48 +0100 Subject: Added "make check" that will actually run the examples. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 2093acc..5a8eb2b 100644 --- a/Makefile +++ b/Makefile @@ -14,3 +14,12 @@ install: clean: make -C $(KERNEL_DIR) SUBDIRS=`pwd` clean + rm -f $(hostprogs) + +hostprogs := example-cipher example-hmac +example-cipher-objs := example-cipher.o +example-hmac-objs := example-hmac.o + +check: $(hostprogs) + ./example-cipher + ./example-hmac -- cgit