31 lines
631 B
Makefile
Executable File
31 lines
631 B
Makefile
Executable File
TARGET_PATH :=$(call my-dir)
|
|
|
|
#########################################
|
|
include $(ENV_CLEAR)
|
|
|
|
TARGET_SRC := \
|
|
tptester.c
|
|
|
|
TARGET_INC := $(TARGET_PATH)/../../../../include
|
|
|
|
TARGET_SHARED_LIB := \
|
|
liblog \
|
|
libcustomaw_media_utils \
|
|
libhwdisplay \
|
|
|
|
TARGET_STATIC_LIB := \
|
|
libcamera \
|
|
|
|
TARGET_CPPFLAGS += -O2 -fPIC -Wall
|
|
|
|
TARGET_LDFLAGS += -lpthread
|
|
# -lisp_dev -lisp_base -lisp_math -lisp_ae -lisp_af -lisp_afs \
|
|
# -lisp_awb -lisp_md -lisp_iso -lisp_gtm -lisp_ini -liniparser \
|
|
# -lpthread -lrt
|
|
|
|
TARGET_MODULE := tptester
|
|
|
|
include $(BUILD_BIN)
|
|
#########################################
|
|
|