mirror of
https://github.com/thead-yocto-mirror/video_memory
synced 2026-06-21 09:12:27 +02:00
117 lines
2.9 KiB
Makefile
117 lines
2.9 KiB
Makefile
##
|
|
# Copyright (C) 2020 Alibaba Group Holding Limited
|
|
##
|
|
ifneq ($(wildcard ../.param),)
|
|
include ../.param
|
|
endif
|
|
|
|
#CONFIG_DEBUG_MODE=1
|
|
CONFIG_OUT_ENV=hwlinux
|
|
|
|
CONFIG_BUILD_DRV_EXTRA_PARAM:=""
|
|
CONFIG_BUILD_LIB_EXTRA_PARAM:=""
|
|
CONFIG_BUILD_TST_EXTRA_PARAM:=""
|
|
|
|
DIR_TARGET_BASE=bsp/vidmem
|
|
DIR_TARGET_KO =bsp/vidmem/ko
|
|
DIR_TARGET_TEST=bsp/vidmem/test
|
|
|
|
MODULE_NAME=vidmem
|
|
BUILD_LOG_START="\033[47;30m>>> $(MODULE_NAME) $@ begin\033[0m"
|
|
BUILD_LOG_END ="\033[47;30m<<< $(MODULE_NAME) $@ end\033[0m"
|
|
|
|
#
|
|
# Do a parallel build with multiple jobs, based on the number of CPUs online
|
|
# in this system: 'make -j8' on a 8-CPU system, etc.
|
|
#
|
|
# (To override it, run 'make JOBS=1' and similar.)
|
|
#
|
|
|
|
ifeq ($(JOBS),)
|
|
JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
|
|
ifeq ($(JOBS),)
|
|
JOBS := 1
|
|
endif
|
|
endif
|
|
|
|
all: info driver lib test install_local_output install_rootfs
|
|
.PHONY: info driver lib test install_local_output install_rootfs \
|
|
install_prepare install_addons clean_driver clean_test clean_output clean
|
|
|
|
info:
|
|
@echo $(BUILD_LOG_START)
|
|
@echo " ====== Build Info from repo project ======"
|
|
@echo " BUILDROOT_DIR="$(BUILDROOT_DIR)
|
|
@echo " CROSS_COMPILE="$(CROSS_COMPILE)
|
|
@echo " LINUX_DIR="$(LINUX_DIR)
|
|
@echo " ARCH="$(ARCH)
|
|
@echo " BOARD_NAME="$(BOARD_NAME)
|
|
@echo " KERNEL_ID="$(KERNELVERSION)
|
|
@echo " KERNEL_DIR="$(LINUX_DIR)
|
|
@echo " INSTALL_DIR_ROOTFS="$(INSTALL_DIR_ROOTFS)
|
|
@echo " INSTALL_DIR_SDK="$(INSTALL_DIR_SDK)
|
|
@echo " ====== Build configuration by settings ======"
|
|
# @echo " CONFIG_DEBUG_MODE="$(CONFIG_DEBUG_MODE)
|
|
@echo " CONFIG_OUT_ENV="$(CONFIG_OUT_ENV)
|
|
@echo " JOBS="$(JOBS)
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
driver:
|
|
@echo $(BUILD_LOG_START)
|
|
make -C $(LINUX_DIR) M=$(PWD)/driver ARCH=$(ARCH) modules
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean_driver:
|
|
@echo $(BUILD_LOG_START)
|
|
make -C driver KDIR=$(LINUX_DIR) clean
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
lib:
|
|
@echo $(BUILD_LOG_START)
|
|
make -w -C lib
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean_lib:
|
|
@echo $(BUILD_LOG_START)
|
|
make -C lib KDIR=$(LINUX_DIR) clean
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
test: driver
|
|
@echo $(BUILD_LOG_START)
|
|
make -w -C test hwlinux
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean_test:
|
|
@echo $(BUILD_LOG_START)
|
|
make clean -C test
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
install_prepare:
|
|
mkdir -p ./output/rootfs/$(DIR_TARGET_KO)
|
|
mkdir -p ./output/rootfs/$(DIR_TARGET_TEST)
|
|
|
|
install_addons: install_prepare
|
|
@echo $(BUILD_LOG_START)
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
install_local_output: driver lib test install_addons
|
|
@echo $(BUILD_LOG_START)
|
|
find ./driver -name "*.ko" | xargs -i cp -f {} ./output/rootfs/$(DIR_TARGET_KO)
|
|
cp -f ./test/vidmem_test ./output/rootfs/$(DIR_TARGET_TEST)
|
|
@if [ `command -v tree` != "" ]; then \
|
|
tree ./output/rootfs; \
|
|
fi
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
install_rootfs: install_local_output
|
|
@echo $(BUILD_LOG_START)
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean_output:
|
|
@echo $(BUILD_LOG_START)
|
|
rm -rf ./output
|
|
@echo $(BUILD_LOG_END)
|
|
|
|
clean: clean_output clean_driver clean_lib clean_test
|
|
|