CC=clang-16
obj-m += dbg.o

# Set the path to the Kernel build utils.
KBUILD=../linux/

default:
	$(MAKE) CC=$(CC) -C $(KBUILD) M=$(PWD) modules
clean:
	$(MAKE) CC=$(CC) -C $(KBUILD) M=$(PWD) clean
