Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / fnx / vlib / CSRFmwork / GNUmakefile
CommitLineData
86530b38
AT
1# *************************************************************************
2#
3#
4# Original Author:
5# Creation Date :
6#
7# File name : GNUmakefile
8# Description : makefile for building Vera lib components
9#
10# Users of this lib should call make using this
11# makefile to build the exportable objects. This makefile
12# may use make variables exported from superior makes
13# processes.
14#
15# *************************************************************************
16
17#--------------------------------------------------------------------
18# Use `lib' to define the name of the library we are building.
19# the exported library will be called $(lib).libvrl
20#--------------------------------------------------------------------
21lib = CSRFmwork
22
23#--------------------------------------------------------------------
24# Use `lib_list' to specify the names of libraries on which this library
25# depends. Be careful that these other libraries don't in turn depend on
26# this one.
27#--------------------------------------------------------------------
28lib_list = CTSupportClasses CSRAccessMethod
29
30#--------------------------------------------------------------------
31# Use `lib_CSRFmwork_vera_src' to define the list of vera source files
32# which compose this library.
33#--------------------------------------------------------------------
34lib_CSRFmwork_vera_src = CSRField.vr \
35 CSRState.vr \
36 CSRFieldAggregate.vr \
37 StubAccessMethod.vr \
38 OmniAccessMethod.vr \
39 DaemonAccessMethod.vr \
40 AccessorBase.vr \
41 CSRAccessor.vr \
42 RAMAccessor.vr \
43 M8BActionBase.vr
44
45#--------------------------------------------------------------------
46# Use `lib_additional_vera_cmp_args' to define additional vera compilation
47# arguments.
48#--------------------------------------------------------------------
49lib_additional_vera_cmp_args =
50
51#--------------------------------------------------------------------
52# Compile this library as a concatenated Vera file.
53#--------------------------------------------------------------------
54lib_$(lib)_combine_vera = 1
55
56#====================================================================
57#======= you probably don't have to change anything below ===========
58#====================================================================
59# Get all the usual targets and dependencies.
60#--------------------------------------------------------------------
61include $(DV_ROOT)/verif/env/fnx/runsim/makefiles/Makefile.libtop
62#====================================================================
63
64#--------------------------- The End --------------------------------