This repository has been archived on 2024-04-23. You can view files and clone it, but cannot push or open issues or pull requests.
Jolan Rathelot b20836700d Initial commit
Signed-off-by: Jolan Rathelot <jrathelo@student.42nice.fr>
2024-03-04 16:45:02 +01:00

20 lines
386 B
Makefile

KDIR ?= /lib/modules/`uname -r`/build
all: driver_and_interrupts.ko
driver_and_interrupts.ko: src/lib.rs
$(MAKE) -C $(KDIR) M=$$PWD LLVM=1
modules_install:
$(MAKE) -C $(KDIR) M=$$PWD LLVM=1 modules_install
clean:
$(MAKE) -C $(KDIR) M=$$PWD LLVM=1 clean
insmod:
insmod driver_and_interrupts.ko
rmmod:
rmmod driver_and_interrupts
.PHONY: all clean modules_install rmmod insmod