1# Note that the line LOCAL_PATH ends with trailing space and 2# cause strange error message reads: 3# 4# make: *** No rule to make target /issue42841-LOCAL_PATH.c', needed by 5# obj/local/armeabi/objs/issue42841-LOCAL_PATH/issue42841-LOCAL_PATH.o'. Stop. 6# 7LOCAL_PATH := $(call my-dir) 8 9include $(CLEAR_VARS) 10LOCAL_MODULE := issue42841-LOCAL_PATH 11LOCAL_SRC_FILES := issue42841-LOCAL_PATH.c 12include $(BUILD_EXECUTABLE) 13