Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / fnx / vlib / CCCXactor / GNUmakefile
CommitLineData
86530b38
AT
1#
2# Original Author:
3# Creation Date :
4#
5# File name : GNUmakefile
6# Description : makefile for building Vera lib components
7#
8# Users of this lib should call make using this
9# makefile to build the exportable objects. This makefile
10# may use make variables exported from superior makes
11# processes.
12#
13# *************************************************************************
14
15#--------------------------------------------------------------------
16# Use `lib' to define the name of the library we are building.
17# the exported library will be called $(lib).libvrl
18#--------------------------------------------------------------------
19lib = CCCXactor
20
21#--------------------------------------------------------------------
22# Compile this library as a concatenated Vera file.
23#--------------------------------------------------------------------
24lib_CCCXactor_combine_vera = 1
25
26#--------------------------------------------------------------------
27# Use `lib_list' to specify the names of libraries on which this library
28# depends. Be careful that these other libraries don't in turn depend on
29# this one.
30#--------------------------------------------------------------------
31lib_list = CTSupportClasses CSRAccessMethod CSRFmwork
32
33#--------------------------------------------------------------------
34# Use `lib_$(lib)_vera_src' to define the list of vera source files
35# which compose this library.
36#--------------------------------------------------------------------
37include vera/Makefile.include
38
39#====================================================================
40#======= you probably don't have to change anything below ===========
41#====================================================================
42
43include $(DV_ROOT)/verif/env/fire/runsim/makefiles/Makefile.libtop
44
45#--------------------------- The End --------------------------------