rjw | 6c1fd8f | 2022-11-30 14:33:01 +0800 | [diff] [blame] | 1 | #######################################################################
|
| 2 | # tty #
|
| 3 | #######################################################################
|
| 4 | # Define source file lists to SRC_LIST
|
| 5 | SRC_LIST = driver/tty/src/dcl_tty.c |
| 6 |
|
| 7 | ifneq ($(filter __TTY_UT__, $(strip $(MODULE_DEFS))),)
|
| 8 | SRC_LIST += driver/tty/src/tty_ut.c |
| 9 | endif
|
| 10 |
|
| 11 | ifneq ($(filter __EXCEPT_TTY_UT__, $(strip $(MODULE_DEFS))),)
|
| 12 | SRC_LIST += driver/tty/src/excp_tty_ut.c |
| 13 | endif
|
| 14 |
|
| 15 | ifneq ($(filter ATEST_SYS_TTYCORE, $(strip $(MODULE_DEFS))),)
|
| 16 | SRC_LIST += driver/tty/src/tty_unit_test.c
|
| 17 | endif
|
| 18 |
|
| 19 | # Define include path lists to INC_DIR
|
| 20 | INC_DIR = driver/tty/inc \ |
| 21 | driver/devdrv/common/inc \ |
| 22 | interface/protocol/l2_utility/flc2_v2 |
| 23 |
|
| 24 | # Define the specified compile options to COMP_DEFS
|
| 25 | COMP_DEFS =
|
| 26 |
|
| 27 | # Define the source file search paths to SRC_PATH
|
| 28 | SRC_PATH = driver/tty/src |
| 29 |
|
| 30 | #fdr_reorg
|
| 31 | INC_DIR += interface/service/sbp \
|
| 32 | interface/protocol/as_c2k/common \
|
| 33 | custom/protocol/common/ps |