14 lines
218 B
Makefile
14 lines
218 B
Makefile
|
|
||
|
ifneq ($(KERNELRELEASE),)
|
||
|
# kbuild part of makefile
|
||
|
obj-m := hello.o
|
||
|
else
|
||
|
# normal makefile
|
||
|
KDIR ?= /lib/modules/`uname -r`/build
|
||
|
|
||
|
default:
|
||
|
$(MAKE) -C $(KDIR) M=$$PWD
|
||
|
clean:
|
||
|
$(MAKE) -C $(KDIR) M=$$PWD clean
|
||
|
endif
|