-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile.master.nc
50 lines (39 loc) · 993 Bytes
/
Makefile.master.nc
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
41
42
43
44
45
46
47
48
49
50
# Time-stamp: <2019-04-22 18:17:04 kmodi>
x: all
#
# Include file for NC Makefiles
#
UVM_VERBOSITY = UVM_LOW
EXTRA_RUN_ARGS =
TEST = /usr/bin/test
N_ERRS = 0
N_FATALS = 0
NC_BIN ?= xrun
ifeq ($(UVM_VERSION),1p2)
CDNS_UVM_DIR=CDNS-1.2
else
CDNS_UVM_DIR=CDNS-1.1d
endif
_NC = $(NC_BIN) -sv \
+xmtimescale+1ns/10ps \
+define+UVM_NO_DEPRECATED \
+define+UVM_$(UVM_VERSION) \
+UVM_VERBOSITY=$(UVM_VERBOSITY) \
-nowarn DSEMEL \
-nowarn DSEM2009 \
-nowarn RNDNOXCEL \
-nowarn RNDXCELON \
+incdir+./
# Use local UVM source pointed to by the env var ${UVM_HOME}.
NC = $(_NC) \
+incdir+$(UVM_HOME)/src \
-uvmnocdnsextra -uvmhome $(UVM_HOME)
# Use the Cadence provided UVM source.
# Note: The Cadence UVM version is needed for Indago to run
NC2 = $(_NC) \
-uvmhome $(CDNS_UVM_DIR)
ncclean:
rm -rf *~ *.log INCA_libs/ xcelium.d/ .ida.db*/ ida.db/ .ida.db_safe* *.key *.history .simvision/
# Local Variables:
# mode: makefile-gmake
# End: