55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
|
|
MODULE = pstncli
|
|
TYPE = plat
|
|
|
|
DBUG_FLAGS_ADD =
|
|
RELS_FLAGS_ADD =
|
|
|
|
##Default commonly as below
|
|
|
|
BUILD = lib
|
|
CFG = debug
|
|
|
|
|
|
PLT_LIB = -DDEBUG
|
|
|
|
APP_LIB =
|
|
LIB_ADD =
|
|
|
|
SRC_PATH = ./src
|
|
INC_PATH = ./src/include
|
|
PLT_PATH = ../../plat
|
|
APP_PATH = ../../mss
|
|
|
|
OBJ_ADD =
|
|
TEST_OBJ_PATH =
|
|
|
|
PREPROC_CMD =
|
|
POSTPROC_CMD =
|
|
|
|
##---------------------------------------------------------------------##
|
|
##--------------------------------------
|
|
##
|
|
## Make configuration(Customer define)
|
|
##
|
|
##--------------------------------------
|
|
|
|
## CCFLAG_SWITCH = on/off => gcc flag show on/off
|
|
## COVER_NEED = yes/no => PTF cover report needed
|
|
## COVER_REPORT_PATH = [path ] => PTF cover report path
|
|
|
|
CCFLAG_SWITCH = off
|
|
COVER_NEED = no
|
|
COVER_REPORT_PATH = ./output
|
|
|
|
##---------------------------------------------------------------------##
|
|
|
|
|
|
##--------------------------------------
|
|
##
|
|
## include makefile.rules (Do not change)
|
|
##
|
|
##--------------------------------------
|
|
MAKE_INCLUDE = ../inc
|
|
include ${MAKE_INCLUDE}/Makefile.rules
|