# ----------------------------------------------------------------------------
#Copyright 2023 CEA*
#*Commissariat a l'Energie Atomique et aux Energies Alternatives (CEA)
#
#Licensed under the Apache License, Version 2.0 (the "License");
#you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
#Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an "AS IS" BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
#[END OF HEADER]
# ----------------------------------------------------------------------------
# 
# ----------------------------------------------------------------------------

########################################################
# Target Library and Top Entity
########################################################
LIB_NAME := cv_sv_dv_utils_lib
TOP_ENTITY_NAME := x_filter_unit_tb

########################################################
# List libraries for simulation
########################################################
LIB_LIST := 

AM_VSIM_OPTIONS += $(LIB_LIST)
AM_VOPT_OPTIONS += $(LIB_LIST)
AM_SVLOG_OPTIONS += $(LIB_LIST)

########################################################
# List Unts
########################################################
LIST_UNITS = ${CV_DV_UTILS_DIR}/sv/x_filter

########################################################
# List Source FIles
########################################################
SVLOG_SOURCES := \
${CV_DV_UTILS_DIR}/sv/x_filter/testbench/x_filter_tb.sv

VERILOG_VPATH += $(CV_DV_UTILS_DIR)/sv/x_filter

########################################################
# List of Units (all required sub-units before compiling this Makefile)
########################################################
# NONE

########################################################
# Include Template
########################################################
include $(PROJECT_DIR)/config/Makefile.def

