makefile中shell注意

1、在Makfile中shell变量需要使用$$来引用,而$(A)是Makefile的变量

test:
    for i in 1 2 3 4 5 ; \
    do\
        echo $$i ; \   #使用 $(i) 的话输出不正确
    done

2、makefile只能在target中调用shell,其他地方调用不出错但是不会被执行

VAR="hello"
$(echo $(VAR))
rul:
	gcc - o main.exe mian.c

上面makefile执行不会打印VAR变量的值,因为echo不在target rul里面

3、shell在makefile中执行时, 每一行shell都由一个单独进程执行,所以不同行的shell之间的变量值不能传递。为此写makefile时,不管shell有多长都要写在一行,这要是很多makefile中有很多行都是以"; "结尾的。

SUBDIR=src example
all:
    @for subdir in $(SUBDIR);  \
    do \
      echo "building ";  \
    done

4、makfeil中赋值符号"="两边允许空格,但是shell脚本的不允许有空格;

5、参考:
https://blog.csdn.net/groundhappy/article/details/52798234

你可能感兴趣的:(Makefile&shell)