Hi I have makefile
with variable, somethings like this :
NDK := ~/Application/Android/SDK/NDK
ARCH := arm
ifeq ($(ARCH),arm)
//..etc..
endif
but when I try to makefile
i get this error :
: NDK: command not found
: ARCH: command not found
: syntax error near unexpected token `$(ARCH),arm'
I'm on ubuntu
that is variable I know, but why i got error for them ? whats wrong anf how to fix ?
I'm new in ubuntu!