25 lines
839 B
Plaintext
25 lines
839 B
Plaintext
# ==============================================================================
|
||
# test makefile
|
||
#FileName: makefile.test_cpri
|
||
#Author: xianfeng.du
|
||
#Data: 2022-10-19
|
||
#Description: test sublevel makefile
|
||
# ==============================================================================
|
||
VERSION = 1.00
|
||
|
||
# ==============================================================================
|
||
# files DIR definition
|
||
# ==============================================================================
|
||
DIR_TEST_BENCH := $(DIR_TEST)/testbench_fh
|
||
|
||
TEST_CASE_DIR := $(DIR_TEST)/testcase/case$(test_id)
|
||
$(info "CPRI_TEST_CASE_DIR=" $(TEST_CASE_DIR))
|
||
|
||
DIRS_SRC_FOLDER += $(DIR_TEST_BENCH)
|
||
DIRS_SRC_FOLDER += $(TEST_CASE_DIR)
|
||
|
||
# Allow certain files to be excluded from the build
|
||
#EXCL_SRCS_FILES += $(TOP_SRC_FILE)
|
||
|
||
|