aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e357001e0dad68afe2365d038889b911c6010023 (plain)
1
2
3
4
5
6
7
8
9
10
11
KERNELRELEASE	?= `uname -r`
KERNEL_DIR	?= /lib/modules/$(KERNELRELEASE)/build
PWD		:= $(shell pwd)
obj-m		:= hello-world.o

all:
	@echo "Building hello-world kernel module..."
	$(MAKE) -C $(KERNEL_DIR) M=$(PWD) modules

clean:
	make -C $(KERNEL_DIR) M=$(PWD) clean