Uses seq_file to print our best greeting.
[cascardo/kernel/samples/proc2/.git] / Makefile
1 ifneq ($(KERNELRELEASE),)
2         obj-m := helloproc.o
3 else
4         KERNELDIR ?= /lib/modules/`uname -r`/build
5         PWD = `pwd`
6
7 default:
8         make -C $(KERNELDIR) M=$(PWD) modules
9
10 clean:
11         make -C $(KERNELDIR) M=$(PWD) clean
12
13 endif