

“modules_install” to the command: $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install Then to install the module(s) just built, add the target


To finalize the installation, one should still follow kernel's documentation: The -C option will continue inside kernel source/headers makefiles having additional targets. $(MAKE) ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE) -C $(KSRC) M=$(shell pwd) modules It's still about building a kernel external module as described officially there:īut the module author appears to have made a few things to simplify user's life, and a simple make will build because of various variables set and then used there: all: modules The author only described additional information.
