From 02eb90375d9975252647ac285d0ba9fa61435640 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Thu, 27 May 2010 12:32:28 +0200 Subject: Added data functionality and a test program. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9b8d965..a038e32 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -KERNEL_DIR = /lib/modules/$(shell uname -r)/build +KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build VERSION = 0.1 cryptodev-objs = cryptodev_main.o cryptodev_cipher.o ncr.o @@ -12,6 +12,7 @@ install: make -C $(KERNEL_DIR) SUBDIRS=`pwd` modules_install @echo "Installing cryptodev.h in /usr/include/crypto ..." @install -D cryptodev.h /usr/include/crypto/cryptodev.h + @install -D ncr.h /usr/include/crypto/ncr.h clean: make -C $(KERNEL_DIR) SUBDIRS=`pwd` clean -- cgit