# Copyright Ryan Raymond 2023

obj-m += monolith.o

all : monolith.c fops_monolith.h fops_monolith.c
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules 

test : all
	./test.sh

clean :
	rm monolith.ko
