i would like to compile android lkm. my compile environment is windows. i saw many other tips for compile in linux, but no tips for windows. how could i set android.mk files ?
KERNELDIR = /lib/modules/$(shell uname -r)/build
obj-m := sample.o
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
clean:
rm -rf *.ko
rm -rf *.mod.*
rm -rf .*.cmd
rm -rf *.o
rm -rf .tmp_versions
