
Adds support for camera kernel driver source being moved to Vendor SI. CRs-Fixed: 2835738 Change-Id: Ibb876edb1284bc77c366c3ef9e1ee9a39981c960 Signed-off-by: Karthik Jayakumar <kjayakum@codeaurora.org>
15 líneas
377 B
Makefile
15 líneas
377 B
Makefile
# Makefile for use with Android's kernel/build system
|
|
|
|
KBUILD_OPTIONS += CAMERA_KERNEL_ROOT=$(shell pwd)
|
|
KBUILD_OPTIONS += KERNEL_ROOT=$(ROOT_DIR)/$(KERNEL_DIR)
|
|
KBUILD_OPTIONS += MODNAME=camera
|
|
|
|
modules:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) modules $(KBUILD_OPTIONS)
|
|
|
|
modules_install:
|
|
$(MAKE) M=$(M) -C $(KERNEL_SRC) modules_install
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean
|