-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.include
More file actions
40 lines (25 loc) · 1.05 KB
/
Makefile.include
File metadata and controls
40 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#########################
# Makefile include file #
#########################
# DO NOT edit this below
export SIM_ROOT_DIR=${shell pwd}
DESIGN=""
PARAMS=""
export DESIGN_DIR=${SIM_ROOT_DIR}/designs/${DESIGN}
# For 'make setup'
CELL_EXP_LOC="gatelevel/Cells_Report_with_Connections_Verbose.txt"
# For 'make prepare'
EXP_FILE=${DESIGN_DIR}/generated_files/experiments.txt
# For 'make simulate'
SIM_SCENARIO_CONFIG="sim_single_point.txt"
SIM_NUM_PROC="20"
# In order to run modelsim: Change the line below to point to the script which sets up
# the environment (or just edit the sctipt this is pointing to)
export MODELSIM_ENV_SETUP=${SIM_ROOT_DIR}/helper_scripts/include/setup_modelsim_env.csh
# Alternatively, if Modelsim does not require any setup (you can just run it by typing 'vsim' at the root folder of the project),
# Comment the above line and comment out the line below to disable modelsim environment setup:
# export MODELSIM_ENV_SETUP=""
export VERILOG_CORELIB=/cad/dk/c/v4.11/verilog/c18a6/c18_CORELIB.v
RES_FILE=""
NUM_EVAL_PROC=15
FORCE_WRITE=0