Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / fnx / vlib / XactorFmwork / 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# Use `lib' to define the name of the library we are building.
18# the exported library will be called $(lib).libvrl
19#--------------------------------------------------------------------
20lib = XactorFmwork
21
22#--------------------------------------------------------------------
23# Use `lib_list' to specify the names of libraries on which this library
24# depends. Be careful that these other libraries don't in turn depend on
25# this one.
26#--------------------------------------------------------------------
27lib_list = report CTSupportClasses
28
29#--------------------------------------------------------------------
30# Use `lib_XactorFmwork_vera_src' to define the list of vera source files
31# which compose this library.
32#--------------------------------------------------------------------
33lib_XactorFmwork_vera_src = XactorBasePacket.vr \
34 XactorBaseExpectDataStruct.vr \
35 XactorBaseSignalInterface.vr \
36 XactorBaseManager.vr \
37 XactorBaseBuilder.vr \
38 XactorBaseTransaction.vr
39
40#--------------------------------------------------------------------
41# Use `lib_additional_vera_cmp_args' to define additional vera compilation
42# arguments.
43#--------------------------------------------------------------------
44lib_additional_vera_cmp_args =
45
46
47#====================================================================
48#======= you probably don't have to change anything below ===========
49#====================================================================
50# Get all the usual targets and dependencies.
51#--------------------------------------------------------------------
52include $(DV_ROOT)/verif/env/fnx/runsim/makefiles/Makefile.libtop
53#====================================================================
54
55#--------------------------- The End --------------------------------