#/* # *File : Makefile # *Author : DavidLin # *Date : 2014-12-07pm # *Email : [email protected] or [email protected] # *world : the city of SZ, in China # *Ver : 000.000.001 # *history : editor time do # * 1)LinPeng 2014-12-07 created this file! # * 2) # */ .PHONY: all clean obj-m := test.o KERNELDIR ?= lib/modules/$(shell uname -r)/build PWD := $(shell pwd) all: make -C $(KERNELDIR) M=$(PWD) modules clean: make -C $(KERNELDIR) M=$(PWD) clean #/* End of Makefile */
时间: 2024-10-25 07:39:59