13 lines
342 B
Makefile
13 lines
342 B
Makefile
KERNELDIR := /home/seal/luozhikun/platform_ssc337/kernel_ssc337
|
|
#KERNELDIR := /home/seal/luozhikun/platform_hi3516cv500/kernel_4.9.37_hi3516cv500
|
|
|
|
CURRENT_PATH := $(shell pwd)
|
|
obj-m := test.o
|
|
|
|
build: kernel_modules
|
|
|
|
kernel_modules:
|
|
$(MAKE) -C $(KERNELDIR) M=$(CURRENT_PATH) modules
|
|
clean:
|
|
$(MAKE) -C $(KERNELDIR) M=$(CURRENT_PATH) clean
|