SConscript revision 12047:8b269268312c
113540Sandrea.mondelli@ucf.edu#!python
24130Ssaidi@eecs.umich.edu
31897Sstever@eecs.umich.edu# Copyright (c) 2016, Dresden University of Technology (TU Dresden)
41897Sstever@eecs.umich.edu# All rights reserved.
51897Sstever@eecs.umich.edu#
61897Sstever@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
71897Sstever@eecs.umich.edu# modification, are permitted provided that the following conditions are
81897Sstever@eecs.umich.edu# met:
91897Sstever@eecs.umich.edu#
101897Sstever@eecs.umich.edu# 1. Redistributions of source code must retain the above copyright notice,
111897Sstever@eecs.umich.edu#    this list of conditions and the following disclaimer.
121897Sstever@eecs.umich.edu#
131897Sstever@eecs.umich.edu# 2. Redistributions in binary form must reproduce the above copyright
141897Sstever@eecs.umich.edu#    notice, this list of conditions and the following disclaimer in the
151897Sstever@eecs.umich.edu#    documentation and/or other materials provided with the distribution.
161897Sstever@eecs.umich.edu#
171897Sstever@eecs.umich.edu# 3. Neither the name of the copyright holder nor the names of its
181897Sstever@eecs.umich.edu#    contributors may be used to endorse or promote products derived from
191897Sstever@eecs.umich.edu#    this software without specific prior written permission.
201897Sstever@eecs.umich.edu#
211897Sstever@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
221897Sstever@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
231897Sstever@eecs.umich.edu# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
241897Sstever@eecs.umich.edu# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
251897Sstever@eecs.umich.edu# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
261897Sstever@eecs.umich.edu# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
271897Sstever@eecs.umich.edu# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
281897Sstever@eecs.umich.edu# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
291897Sstever@eecs.umich.edu# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
301897Sstever@eecs.umich.edu# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
311897Sstever@eecs.umich.edu# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
321897Sstever@eecs.umich.edu#
331897Sstever@eecs.umich.edu# Authors: Christian Menard
344961Ssaidi@eecs.umich.edu
351897Sstever@eecs.umich.eduImport('env')
361897Sstever@eecs.umich.edu
371897Sstever@eecs.umich.eduenv = env.Clone()
381897Sstever@eecs.umich.edu
397047Snate@binkert.orgobjs = []
408319Ssteve.reinhardt@amd.comobjs += env.Object('cli_parser.cc')
417047Snate@binkert.orgobjs += env.Object('report_handler.cc')
428319Ssteve.reinhardt@amd.com
4311706Sandreas.hansson@arm.comReturn('objs')
448811Sandreas.hansson@arm.com