I'm developing with mk file and linux make command.
mk file have content like below.
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := $(CONFIG_MODULE_...)
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/src \
...
LOCAL_SRC_FILES := \
$(wildcard $(CONFIG_DIR)/*.c)
LOCAL_CFLAGS := \
$(CONFIG_LOCAL_EXPORT_CFLAGS) \
$(CONFIG_COVERAGE_CFLAGS)
include $(BUILD_STATIC_LIBRARY)
In this file, there are a header file and the header have #include <tizen_error.h>
When I command make command, it show ....h:24:25: fatal error: tizen_error.h: No such file or directory
If I remove this file, command work well with dumy files.
How can I add tizen library or sdk to my mk config to work make command?