Initial Commit
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@@ -0,0 +1,17 @@
|
||||
obj-m += rtkit.o
|
||||
|
||||
KERNEL_ROOT=/lib/modules/$(shell uname -r)/build
|
||||
|
||||
all: modules
|
||||
|
||||
modules:
|
||||
@$(MAKE) -C $(KERNEL_ROOT) M=$(shell pwd) modules
|
||||
|
||||
clean:
|
||||
@$(MAKE) -C $(KERNEL_ROOT) M=$(shell pwd) clean
|
||||
|
||||
install: rtkit.ko
|
||||
insmod rtkit.ko
|
||||
|
||||
uninstall:
|
||||
rmmod rtkit
|
Reference in New Issue
Block a user