KDIR=/lib/modules/$(shell uname -r)/build
obj-m += buddy_test.o
all:
	make -C $(KDIR) M=$(PWD) modules
clean:
	make -C $(KDIR) M=$(PWD) clean
