summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0e33540..72439b2 100644
--- a/Makefile
+++ b/Makefile
@@ -77,6 +77,8 @@ obj-m += cryptodev.o
build:
@$(MAKE) version.h
$(MAKE) -C $(KERNEL_DIR) SUBDIRS=`pwd` modules
+ $(MAKE) -C userspace
+ $(MAKE) -C examples
install:
$(MAKE) -C $(KERNEL_DIR) SUBDIRS=`pwd` modules_install
@@ -87,6 +89,7 @@ install:
clean:
$(MAKE) -C $(KERNEL_DIR) SUBDIRS=`pwd` clean
rm -f $(hostprogs)
+ $(MAKE) -C userspace clean
KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C examples clean
check: