Created
April 10, 2020 20:54
-
-
Save ricbit/5f2c6f3151b33e11a733a26969871b0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KERNELDIR=/lib/modules/`uname -r`/build | |
#ARCH=i386 | |
#KERNELDIR=/usr/src/kernels/`uname -r`-i686 | |
MODULES = db9.o | |
obj-m += db9.o | |
all: | |
make -C $(KERNELDIR) M=$(PWD) modules | |
clean: | |
make -C $(KERNELDIR) M=$(PWD) clean | |
install: | |
make -C $(KERNELDIR) M=$(PWD) modules_install | |
quickInstall: | |
cp $(MODULES) /lib/modules/`uname -r`/extra |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment