diff --git a/Product/modules/usercfgrcv/Makefile b/Product/modules/usercfgrcv/Makefile new file mode 100755 index 000000000..6a01d1c6b --- /dev/null +++ b/Product/modules/usercfgrcv/Makefile @@ -0,0 +1,11 @@ +ifneq ($(KERNELRELEASE), ) +obj-m := usercfg_kinit.o +else +#KDIR ?= /opt/fsl-kernel/x86/linux-4.9.140 +KDIR ?= /opt/fsl-kernel/arm64/linux-4.9.140 +#PWD := $(shell pwd) +all: + make -C $(KDIR) M=$(PWD) modules +clean: + make -C $(KDIR) M=$(PWD) clean +endif