This question look duplicate to make *** no targets specified and no makefile found. stop but my problem is slightly different and I tried that solution also but not work for me.
I'm working on OpenCV library and I start with sample project but this gives the following error to me. Please help me to solve this error.
17:31:25 **** Auto Build of configuration Default for project MyFirstOpenCVJNI ****
make
make: *** No targets specified and no makefile found. Stop.
17:31:25 Build Finished (took 122ms)
following is my Android.mk file
//Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
OPENCV_LIB_TYPE:=STATIC
OPENCV_INSTALL_MODULES:=on
include ../includeOpenCV.mk
include $(OPENCV_MK_PATH)
LOCAL_MODULE := first-opencvjni
LOCAL_SRC_FILES := first-opencvjni.cpp
LOCAL_LDLIBS += -llog -ldl
include $(BUILD_SHARED_LIBRARY)