sdk-hwV1.3/external/eyesee-mpp/system/public/libupdate/build.mk

49 lines
894 B
Makefile
Raw Permalink Normal View History

2024-05-07 10:09:20 +00:00
#
# 1. Set the path and clear environment
# TARGET_PATH := $(call my-dir)
# include $(ENV_CLEAR)
#
# 2. Set the source files and headers files
# TARGET_SRC := xxx_1.c xxx_2.c
# TARGET_INc := xxx_1.h xxx_2.h
#
# 3. Set the output target
# TARGET_MODULE := xxx
#
# 4. Include the main makefile
# include $(BUILD_BIN)
#
# Before include the build makefile, you can set the compilaion
# flags, e.g. TARGET_ASFLAGS TARGET_CFLAGS TARGET_CPPFLAGS
#
TARGET_PATH :=$(call my-dir)
#########################################
include $(ENV_CLEAR)
TARGET_SRC := \
OtaUpdate.cpp \
OtaMain.cpp \
imgdecode.c \
sprite_card.c \
sprite_main.c
TARGET_INC += \
$(TARGET_PATH) \
$(TARGET_TOP)/custom_aw/include
TARGET_SHARED_LIB := \
liblog
TARGET_CFLAGS += \
-fPIC
TARGET_LDFLAGS += \
-lpthread \
-lminigui_ths
TARGET_MODULE := ipc_update
include $(BUILD_BIN)