Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Linux Makefile命令替换问题_Linux_Makefile - Fatal编程技术网

Linux Makefile命令替换问题

Linux Makefile命令替换问题,linux,makefile,Linux,Makefile,当给定不同的配置文件时,不会自动重建文件。因此,我尝试在Makefile级别执行此操作: REBAR=./rebar REBAR_DEBUG=$(REBAR) -C rebar.debug.config REBAR_COMPILE=$(REBAR) get-deps compile LAST_CONFIG:=$(cat config.tmp) PLT=dialyzer/sqlite3.plt all: config_normal compile compile: $(REBAR_CO

当给定不同的配置文件时,不会自动重建文件。因此,我尝试在Makefile级别执行此操作:

REBAR=./rebar
REBAR_DEBUG=$(REBAR) -C rebar.debug.config
REBAR_COMPILE=$(REBAR) get-deps compile
LAST_CONFIG:=$(cat config.tmp)
PLT=dialyzer/sqlite3.plt

all: config_normal compile

compile:
    $(REBAR_COMPILE)

test:
    $(REBAR_COMPILE) eunit

clean:
    -rm -rf deps ebin priv doc/* .eunit c_src/*.o

docs:
    $(REBAR_COMPILE) doc

static: config_debug
    $(REBAR_DEBUG) get-deps compile
ifeq ($(wildcard $(PLT)),)
    dialyzer --build_plt --apps kernel stdlib erts --output_plt $(PLT) 
else
    dialyzer --plt $(PLT) -r ebin
endif

cross_compile: config_cross
    $(REBAR_COMPILE) -C rebar.cross_compile.config

valgrind: clean
    $(REBAR_DEBUG) get-deps compile
    valgrind --tool=memcheck --leak-check=yes --num-callers=20 ./test.sh

ifeq ($(LAST_CONFIG),normal)
config_normal:
    echo "$(LAST_CONFIG) == normal"
else
config_normal: clean
    echo "$(LAST_CONFIG) != normal"
    rm -f config.tmp
    echo "normal" > config.tmp
endif

ifeq ($(LAST_CONFIG),debug)
config_debug: ;
else
config_debug: clean
    rm -f config.tmp
    echo "debug" > config.tmp
endif

ifeq ($(LAST_CONFIG),cross)
config_cross: ;
else
config_cross: clean
    rm -f config.tmp
    echo "cross" > config.tmp
endif

.PHONY: all compile test clean docs static valgrind config_normal config_debug config_cross
其意图是显而易见的:当我使用需要某个配置文件的目标时,检查上次是否使用了同一个文件;运行
clean
并记录我们现在使用的配置

但它不起作用,文件会不断重新编译:

aromanov@alexey-desktop:~/workspace/gmcontroller/lib/sqlite3$ make
rm -rf deps ebin priv doc/* .eunit c_src/*.o
echo " != normal"
 != normal
rm -f config.tmp
echo "normal" > config.tmp
./rebar get-deps compile
==> sqlite3 (get-deps)
==> sqlite3 (compile)
Compiled src/sqlite3_lib.erl
Compiled src/sqlite3.erl
Compiling c_src/sqlite3_drv.c
尽管config.tmp包含“正常”:


我遗漏了什么?

您遗漏了定义变量时实际调用外部程序所需的部分

LAST_CONFIG:=$(shell cat config.tmp)
也可以使用shell赋值运算符


这个部分是否真的能正常工作“ifeq($(上次配置),正常)”?可能不能,但这就是为什么我添加了
echo“$(上次配置)!=normal”
,似乎表明
$(上次配置)
是空的。
LAST_CONFIG:=$(shell cat config.tmp)
LAST_CONFIG != cat config.tmp