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
No need to modify the Makefile.
$ cat printvars.mak print-%: @echo '$*=$($*)' $ cd /to/Makefile/dir $ make -f ~/printvars.mak -f Makefile print-VARIABLE