mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-20 03:33:20 +08:00
22 lines
256 B
Makefile
22 lines
256 B
Makefile
ifneq ($(KERNELRELEASE),)
|
|
|
|
obj-m := mmap_test.o
|
|
|
|
else
|
|
|
|
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
|
|
|
|
|
|
PWD := $(shell pwd)
|
|
|
|
all:
|
|
make -C $(KERNELDIR) M=$(PWD) modules
|
|
gcc test.c -o test
|
|
|
|
clean:
|
|
make -C $(KERNELDIR) M=$(PWD) clean
|
|
rm ./test
|
|
|
|
|
|
endif
|