我有几个makefile在应用程序特定的目录,像这样:

/project1/apps/app_typeA/Makefile
/project1/apps/app_typeB/Makefile
/project1/apps/app_typeC/Makefile

每个Makefile都在这个路径中包含一个.inc文件:

/project1/apps/app_rules.inc

app_rules内部。inc .我正在设置我想要在构建时放置二进制文件的目的地。我希望所有二进制文件都在它们各自的app_type路径中:

/project1/bin/app_typeA/

我尝试使用$(CURDIR),像这样:

OUTPUT_PATH = /project1/bin/$(CURDIR)

但相反,我得到了二进制文件埋在整个路径名,像这样:(注意冗余)

/project1/bin/projects/users/bob/project1/apps/app_typeA

我能做些什么来获得执行的“当前目录”,以便我可以知道app_typeX,以便将二进制文件放在各自的类型文件夹中?


当前回答

简单、正确、现代的方式:

对于GNU make >= 3.81,它是在2006年引入的

ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))

MAKEFILE_LIST在包含文件进入和退出作用域时发生变化。最后一项是当前文件。 lastword提取最后一项(Makefile名称,相对于pwd) Realpath是内置的,并从文件系统根解析为规范路径 Dir删除文件名,只留下目录。

其他回答

壳层函数。

您可以使用shell函数:current_dir = $(shell pwd)。 如果不需要绝对路径,也可以使用shell结合notdir: Current_dir = $(notdir $(shell pwd))。

更新。

给定的解决方案仅在从Makefile的当前目录运行make时有效。 正如@Flimm所指出的:

注意,这将返回当前工作目录,而不是Makefile的父目录。例如,如果您运行cd /;make -f /home/username/project/ makefile,则current_dir变量为/,而不是/home/username/project/。

下面的代码将适用于从任何目录调用的makefile:

mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(notdir $(patsubst %/,%,$(dir $(mkfile_path))))

用{}代替()

cur_dir=${shell pwd}
parent_dir=${shell dirname ${shell pwd}}}

解决方案:https://sourceforge.net/p/ipt-netflow/bugs-requests-patches/53/

解决方案是:$(CURDIR)

你可以这样使用它:

CUR_DIR = $(CURDIR)

## Start :
start:
    cd $(CUR_DIR)/path_to_folder

如果您正在使用GNU make, $(CURDIR)实际上是一个内置变量。它是Makefile所在的位置,当前工作目录可能是Makefile所在的位置,但并不总是这样。

OUTPUT_PATH = /project1/bin/$(notdir $(CURDIR))

参见http://www.gnu.org/software/make/manual/make.html中的“附录A快速参考”

从这里带走;

ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))

显示为;

$ cd /home/user/

$ make -f test/Makefile 
/home/user/test

$ cd test; make Makefile 
/home/user/test