moved paper and artifacts

This commit is contained in:
twoneis 2025-02-19 17:58:57 +01:00
parent ab27c4cba8
commit 92bd09ec53
36 changed files with 0 additions and 0 deletions

23
paper/artifacts/Makefile Normal file
View file

@ -0,0 +1,23 @@
obj-m = lkm.o
KVERSION = $(shell uname -r)
all: build modules remove insert
init: build modules insert
remove:
sudo rmmod lkm
insert:
sudo insmod lkm.ko && sudo chmod 666 /dev/lkm
modules:
make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
make -C generic clean
make -C heap clean
make -C stack clean
make -C page-table clean
make -C attacks clean
build:
make -C generic
make -C heap
make -C stack
make -C page-table
make -C attacks