리눅스 디바이스 드라이버 3판에서 다음과 같은 Makefile을 보았습니다.
-------------- Makefile ---------------------------------------
ifneq ($(KERNELRELEASE), )
obj-m := hello_world.o
else
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
----------------------------------------------------------------