mirror of
https://github.com/thead-yocto-mirror/csi_hal
synced 2026-06-21 08:52:22 +02:00
31 lines
694 B
Makefile
31 lines
694 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
|
|
|
|
#CFLAGS +=
|
|
LIBS += -lhal_common -lhal_platform
|
|
OUTPUT_DIR := $(DIR_TO_ROOT)/output/examples/venc
|
|
#PREPARE := lib_camera
|
|
|
|
TARGET_1 := venc_demo1
|
|
SRCS_1 = venc_demo1.c
|
|
|
|
TARGET_ALL := $(TARGET_1)
|
|
|
|
all: $(TARGET_ALL)
|
|
|
|
clean:
|
|
rm -rf .obj
|
|
rm -f $(TARGET_1) $(OUTPUT_DIR)/$(TARGET_1)
|
|
|
|
include $(DIR_TO_ROOT)/common_target.mk
|
|
|
|
.PHONY: clean all
|