License Makefile, shell scripts, assembly source code, Dockerfile

This commit is contained in:
Jianfeng Jiang
2024-01-03 06:40:54 +00:00
committed by Tate, Hongliang Tian
parent faaa4438d6
commit 0920a084e4
13 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
MAKEFLAGS += --no-builtin-rules # Prevent the implicit rules from compiling ".c" or ".s" files automatically.
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
CUR_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH)))

View File

@ -1,3 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
MAIN_MAKEFILE := $(firstword $(MAKEFILE_LIST))
INCLUDE_MAKEFILE := $(lastword $(MAKEFILE_LIST))
CUR_DIR := $(shell dirname $(realpath $(MAIN_MAKEFILE)))