Files

14 lines
287 B
Makefile
Raw Permalink Normal View History

2024-05-07 18:09:20 +08:00
LOCAL_PATH := $(call my-dir)
############################################
include $(CLEAR_VARS)
LOCAL_MODULE := parser
LOCAL_SRC_FILES := parser.c
LOCAL_C_INCLUDES := $(TOP)/DragonBoard/inc
LOCAL_SHARED_LIBRARIES := libutils
LOCAL_MODULE_TAGS := optional
include $(BUILD_EXECUTABLE)