How to print out a variable in makefile

后端 未结 15 1060
臣服心动
臣服心动 2020-12-07 06:51

In my makefile, I have a variable \'NDK_PROJECT_PATH\', my question is how can I print it out when it compiles?

I read Make file echo displaying "$PATH" st

15条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 07:27

    No need to modify the Makefile.

    $ cat printvars.mak
    print-%:
            @echo '$*=$($*)'
    
    $ cd /to/Makefile/dir
    $ make -f ~/printvars.mak -f Makefile print-VARIABLE
    

提交回复
热议问题