[Mod] 添加 MAKEFILE_LIST 测试用例

This commit is contained in:
gaoyang3513
2025-07-19 23:43:46 +08:00
parent 8d68700f52
commit 98fa2377a8
3 changed files with 17 additions and 1 deletions

14
.editorconfig Normal file
View File

@ -0,0 +1,14 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
end_of_line = lf
charset = utf-8
[Makefile]
indent_style = tab
indent_size = 8
trim_trailing_whitespace = false
insert_final_newline = false

View File

@ -1,9 +1,11 @@
makedir := $(abspath $(lastword $(MAKEFILE_LIST)))
$(warning makedir1=$(makedir))
include dir1/Makefile
makedir := $(abspath $(lastword $(MAKEFILE_LIST)))
$(warning makedir3=$(makedir))
all:
@echo "Completing the main Makefile"