commit 8d68700f526059fb2532442e6bf47d621758c293 Author: gaoyang3513 Date: Thu Apr 27 15:40:55 2023 +0800 [新增] MAKEFILE_LIST测试用例 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b53e7e6 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + + +makedir := $(abspath $(lastword $(MAKEFILE_LIST))) +$(warning makedir1=$(makedir)) + +include dir1/Makefile +makedir := $(abspath $(lastword $(MAKEFILE_LIST))) +$(warning makedir3=$(makedir)) + diff --git a/dir1/Makefile b/dir1/Makefile new file mode 100644 index 0000000..0da385b --- /dev/null +++ b/dir1/Makefile @@ -0,0 +1,6 @@ + + +makedir := $(abspath $(lastword $(MAKEFILE_LIST))) +$(warning makedir2=$(makedir)) + +