obj-m = report_edid.o

PWD := $(shell pwd)

ifeq ($(PF), DV1)
	KDIR := ../../../../../../../../../../out/target/product/mfld_dv10/obj/kernel
endif
ifeq ($(PF), PR2)
	KDIR := ../../../../../../../../../../out/target/product/mfld_pr2/kernel_build/
endif
all:
	make -C $(KDIR) M=$(PWD) modules
clean:
	make -C $(KDIR) M=$(PWD) clean
