mirror of
https://github.com/thead-yocto-mirror/csi_hal
synced 2026-06-21 17:02:25 +02:00
23 lines
497 B
Makefile
23 lines
497 B
Makefile
##
|
|
# Copyright (C) 2021 Alibaba Group Holding Limited
|
|
# Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
##
|
|
DIR_TO_ROOT=..
|
|
include $(DIR_TO_ROOT)/build.param
|
|
|
|
all: camera
|
|
|
|
camera:
|
|
@echo $(BUILD_LOG_START)
|
|
make -C camera/
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean:
|
|
make -C camera/ clean
|
|
|
|
.PHONY: clean all camera
|