Files
LDD-LinuxDeviceDrivers/study/driver/hello/Makefile
T
2016-05-27 15:22:57 +08:00

20 lines
264 B
Makefile

ifneq ($(KERNELRELEASE),)
obj-m := hello.o
else
#KERNELDIR ?= /lib/modules/$(shell uname -r)/build
KERNELDIR ?= /usr/src/linux-headers-3.14.0
PWD := $(shell pwd)
all:
make -C $(KERNELDIR) M=$(PWD) modules
clean:
make -C $(KERNELDIR) M=$(PWD) clean
endif