I\'m trying to print some extra info when in compile a library using ndk-build.
For example:
LOCAL_PATH := $(call my-dir) all:;echo $(LOCAL_PATH) echo: $
The more correct function to call is "$(info ...)" :
LOCAL_PATH := $(call my-dir) $(info $(LOCAL_PATH))